-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscikgtex.lua
More file actions
766 lines (688 loc) · 485 KB
/
Copy pathscikgtex.lua
File metadata and controls
766 lines (688 loc) · 485 KB
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
-- setting a seed for rng
TIME = os.time()
CLOCK = tostring(os.clock())
CLOCK = tonumber(string.sub(CLOCK, string.find(CLOCK, "%.")+1))
math.randomseed(TIME + CLOCK)
MATRIX_AND = {{0,0},{0,1}}
MATRIX_OR = {{0,1},{1,1}}
HEXES = '0123456789abcdef'
local SciKGTeX = {}
SciKGTeX.whole_string = ""
SciKGTeX.properties_used = {}
SciKGTeX.property_commands = {}
SciKGTeX.mandatory_properties = {
'research_problem',
'objective',
'method',
'result',
'conclusion'
}
SciKGTeX.PRODUCE_XMP_FILE = true
SciKGTeX.WARNING_LEVEL = 1
local XMP = {}
XMP.lines = {}
XMP.namespaces = {}
XMP.property_ns = {}
XMP.XMP_TOP = [[<x:xmpmeta xmlns:x="adobe:ns:meta/">]]
XMP.XMP_BOTTOM = [[</x:xmpmeta>]]
XMP.PACKET_END = [[<?xpacket end="r"?>]]
local UUID = {}
---------------------------- utilities -------------------------------
-- performs the bitwise operation specified by truth matrix on two numbers.
function BITWISE(x, y, matrix)
local z = 0
local pow = 1
while x > 0 or y > 0 do
z = z + (matrix[x%2+1][y%2+1] * pow)
pow = pow * 2
x = math.floor(x/2)
y = math.floor(y/2)
end
return z
end
function INT2HEX(x)
local s,base,pow = '',16,0
local d
while x > 0 do
d = x % base + 1
x = math.floor(x/base)
s = string.sub(HEXES, d, d)..s
end
if #s == 1 then s = "0" .. s end
return s
end
function get_output_dir()
if arg ~= nil then
for k,v in ipairs(arg) do
val, is_output_argument = v:gsub('%-%-output%-directory=(.*)','%1')
if is_output_argument > 0 then
return val
end
end
return nil
end
return nil
end
function read_header_of_file(path)
local fh = io.open(path, "rb")
if fh then
local first_line = assert(fh:read())
fh:close()
return first_line
else
print ("No xmp metadata file found!")
return nil
end
end
function extract_uuid_from_header(header)
return header:gsub('.*id=\"(.-)\".*','%1')
end
function generate_UUID()
UUID:initialize('00:0c:29:69:41:c6')
return UUID:toString()
end
function string:split(sep)
if sep == nil then
sep = "%s"
end
local t = {}
for str in self:gmatch("([^"..sep.."]+)") do
table.insert(t, str)
end
return t
end
function spaces_to_underscores(s)
return s:gsub('%s+','_')
end
function remove_environments(s)
s,c = s:gsub('\\begin%s*{.-}{.-}%s*','')
s,c = s:gsub('\\begin%s*{.-}%s*','')
s,c = s:gsub('\\end%s*{.-}%s*','')
return s
end
function remove_any_latex_command(s)
s, c = s:gsub('\\%w+%s*%[%d*%]%s*{(.*)}','%1')
if c > 0 then
return remove_latex_commands(s)
end
s, c = s:gsub('\\%w+%s*{(.*)}','%1')
if c > 0 then
return remove_latex_commands(s)
end
s, c = s:gsub('\\%w+%s*','')
if c > 0 then
return remove_latex_commands(s)
end
return s
end
function find_last_occurence(s, repls)
occurences = {}
for pattern, repl in pairs(repls) do
i, j = s:find(pattern)
if i ~= nil then
table.insert(occurences, {i,j,pattern})
end
end
table.sort(occurences, function(l, r) return l[1]>r[1] end)
if #occurences > 0 then
return occurences[1]
else
return nil
end
end
function exhaustively_replace_last_occurence_of_pattern(s, repls)
last_occurence = find_last_occurence(s, repls)
if last_occurence ~= nil then
starts, ends, pattern = table.unpack(last_occurence)
to_replace = s:sub(starts,ends)
else
return s
end
new_string = s:sub(0,starts-1) .. to_replace:gsub(pattern, repls[pattern], 1) .. s:sub(ends+1)
return exhaustively_replace_last_occurence_of_pattern(new_string, repls)
end
function remove_latex_commands(s)
replacements = {
-- contribution with * and []
['\\contribution%s*%*%s*%[%d*%]%s*{.-}{.*}%s*'] = '',
-- contribution with *
['\\contribution%s*%*%s*{.-}%s*{.*}%s*'] = '',
-- contribution with []
['\\contribution%s*%[%d*%]%s*{.-}{(.*)}'] = '%1',
-- contribution normal
['\\contribution%s*{.-}%s*{(.*)}'] = '%1',
['\\uri%s*{.-}%s*{(.*)}'] = '%1',
}
for cmd, used in pairs(SciKGTeX.property_commands) do
-- []
replacements['\\'.. cmd .. '%s*%[%d*%]%s*{(.*)}'] = '%1'
-- normal command
replacements['\\'.. cmd .. '%s*{(.*)}'] = '%1'
-- with * and []
replacements['\\'.. cmd .. '%s*%*%s*%[%d*%]%s*{.*}%s*'] = ''
-- with *
replacements['\\'.. cmd .. '%s*%*%s*{.*}%s*'] =''
end
s = remove_environments(s)
s = exhaustively_replace_last_occurence_of_pattern(s, replacements)
s = remove_any_latex_command(s)
-- remove escape chars
s = s:gsub('\\','')
return s
end
function uri_valid(s)
if s:find('http') ~= 1 then
return false
else
return true
end
end
function resolve_entity(s)
-- make sure the entity is only resolved at the innermost of nested commands.
for _, cmd in ipairs(SciKGTeX.mandatory_properties) do
if s:find('\\' .. cmd) then
return false
end
end
if s:find('\\contribution') then
return false
end
uri, found = s:gsub('.*\\uri%s*{(.-)}%s*{.*}.*', '%1')
if found == 1 then
label = s:gsub('.*\\uri%s*{.-}%s*{(.*)}.*', '%1')
entity = string.format('<rdf:Description rdf:about=\"%s\"><rdfs:label>%s</rdfs:label></rdf:Description>', uri, label)
return entity
else
uri, found = s:gsub('.*\\uri%s*{(.-)}.*', '%1')
if found == 1 then
entity = string.format('<rdf:Description rdf:about=\"%s\"></rdf:Description>', uri)
return entity
else
return false
end
end
end
---------------------------- UUID class methods -------------------------------------
-- hwaddr is a string: hexes delimited by colons. e.g.: 00:0c:29:69:41:c6
function UUID:initialize(hwaddr)
self._bytes = {
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
math.random(0, 255),
-- should come from mac address
tonumber(hwaddr:sub(1, 2), 16),
tonumber(hwaddr:sub(4, 5), 16),
tonumber(hwaddr:sub(7, 8), 16),
tonumber(hwaddr:sub(10, 11), 16),
tonumber(hwaddr:sub(13, 14), 16),
tonumber(hwaddr:sub(16, 17), 16)
}
-- set the version
self._bytes[7] = BITWISE(self._bytes[7], 0x0f, MATRIX_AND)
self._bytes[7] = BITWISE(self._bytes[7], 0x40, MATRIX_OR)
-- set the variant
self._bytes[9] = BITWISE(self._bytes[7], 0x3f, MATRIX_AND)
self._bytes[9] = BITWISE(self._bytes[7], 0x80, MATRIX_OR)
self._string = nil
end
-- lazy string creation.
function UUID:toString()
if self._string == nil then
self._string = INT2HEX(self._bytes[1])..INT2HEX(self._bytes[2])..
INT2HEX(self._bytes[3])..INT2HEX(self._bytes[4]).."-"..
INT2HEX(self._bytes[5])..INT2HEX(self._bytes[6]).."-"..
INT2HEX(self._bytes[7])..INT2HEX(self._bytes[8]).."-"..
INT2HEX(self._bytes[9])..INT2HEX(self._bytes[10]).."-"..
INT2HEX(self._bytes[11])..INT2HEX(self._bytes[12])..
INT2HEX(self._bytes[13])..INT2HEX(self._bytes[14])..
INT2HEX(self._bytes[15])..INT2HEX(self._bytes[16])
end
return self._string
end
---------------------------- Main class methods -------------------------------
function SciKGTeX:set_warning_level(wl)
self.WARNING_LEVEL = wl
end
function SciKGTeX:warn(warning_message, ...)
if self.WARNING_LEVEL > 0 then
texio.write_nl("term and log",
[[Package SciKGTeX Warning: ]] .. string.format(warning_message, ...))
texio.write_nl("term and log","\n")
end
end
function SciKGTeX:error(warning_message, ...)
tex.error([[Package SciKGTeX Error: ]] .. string.format(warning_message, ...))
end
SciKGTeX.command_factory = {}
SciKGTeX.command_factory.cmd_top = [[\newcommand{\%s}[2][]{]]
SciKGTeX.command_factory.cmd_top_star = [[\WithSuffix\newcommand\%s*[2][]{]]
SciKGTeX.command_factory.cmd_top_override = [[\renewcommand{\%s}[2][]{]]
SciKGTeX.command_factory.cmd_top_star_override = [[\WithSuffix\renewcommand\%s*[2][]{]]
SciKGTeX.command_factory.directlua_part = [[ \directlua{
local content = "\luaescapestring{\unexpanded{#2}}"
local belongs_to_contribution = "\luaescapestring{\unexpanded{#1}}"
SciKGTeX.XMP:add_annotation(belongs_to_contribution, '%s', content, 'annotation-id')
}]]
SciKGTeX.command_factory.cmd_bottom = [[}]]
SciKGTeX.command_factory.cmd_bottom_star = [[\ignorespaces}]]
function SciKGTeX.command_factory:build_command(command_name, tag_name)
full_cmd = self.cmd_top .. "\n" .. self.directlua_part .. "\n #2\n" .. self.cmd_bottom
formatted_cmd = string.format(full_cmd, command_name, tag_name)
for i, line in ipairs(formatted_cmd:split("\n")) do
tex.print(line .. "%")
end
end
function SciKGTeX.command_factory:build_star_command(command_name, tag_name)
full_cmd = self.cmd_top_star .. "\n" .. self.directlua_part .. "\n" .. self.cmd_bottom_star
formatted_cmd = string.format(full_cmd, command_name, tag_name)
for i, line in ipairs(formatted_cmd:split("\n")) do
tex.print(line .. "%")
end
end
function SciKGTeX.command_factory:override_command(command_name, tag_name)
full_cmd = self.cmd_top_override .. "\n" .. self.directlua_part .. "\n #2\n" .. self.cmd_bottom
formatted_cmd = string.format(full_cmd, command_name, tag_name)
for i, line in ipairs(formatted_cmd:split("\n")) do
tex.print(line .. "%")
end
end
function SciKGTeX.command_factory:override_star_command(command_name, tag_name)
full_cmd = self.cmd_top_star_override .. "\n" .. self.directlua_part .. "\n" .. self.cmd_bottom_star
formatted_cmd = string.format(full_cmd, command_name, tag_name)
for i, line in ipairs(formatted_cmd:split("\n")) do
tex.print(line .. "%")
end
end
function SciKGTeX:make_new_command(new_property, namespace, tag_name)
if tag_name==nil then
tag_name=new_property
end
-- check if property already exists
if self.property_commands[new_property]~=nil then
self:warn([[Method newpropertycommand: Repeated definition.
Command %s already exists!
Are you sure you want to override it?]], new_property)
self:add_property(new_property, namespace)
self.command_factory:override_command(new_property, tag_name)
self.command_factory:override_star_command(new_property, tag_name)
else
self.property_commands[new_property] = false
self:add_property(new_property, namespace)
self.command_factory:build_command(new_property, tag_name)
self.command_factory:build_star_command(new_property, tag_name)
end
end
function SciKGTeX:add_property(new_property, namespace)
new_property = self.XMP:escape_xml_tags(new_property)
-- check if property already exists
if self.properties_used[new_property]~=nil then
self:warn([[Method addmetaproperty: Repeated definition.
Property %s already added!
Are you sure you want to replace it?]], new_property:gsub('_', ''))
-- if not make it known to the object
else
self.properties_used[new_property] = false
end
ns_prefix = self.XMP:extract_namespace_prefix(namespace)
self.XMP.property_ns[new_property] = ns_prefix
end
function SciKGTeX:register_property(prop_type)
self.properties_used[prop_type] = true
end
function SciKGTeX:warn_unused_command()
warning_message = [[No %s annotation found!
Are you sure you don't want to mark an entity with %s?]]
for i, p in ipairs(self.mandatory_properties) do
used = self.properties_used[p]
if not used then
p=p:gsub('_', '')
self:warn(warning_message, p, p);
end
end
end
function SciKGTeX:warn_ambiguous_orkg_label(label, property_uris)
warning_message = [[The property '%s' you used has several possible correspondences in the ORKG!
Currently this property is used %s.
Please check the URL to find out if that is the correct usage.
If not check if any of the following are more suiting:
%s
To suppress this message add the following to your document preamble:
\addmetaproperty[orkg_property, http://orkg.org/property/]{%s}
and replace any use of the command with
\contribution{%s}
To use a different URI, replace '%s' with the property id at the end any of the URLs above which fits your usage best.
]]
uris = ""
current = "http://orkg.org/property/" .. property_uris[1]
for i, p in ipairs(property_uris) do
if i > 1 then
uris = uris .. i-1 .. ". http://orkg.org/property/" .. p
if i < #property_uris then
uris = uris .. '\n'
end
end
end
how_to_use="\\addmetaproperty{http://orkg.org/property/}{" .. "}"
self:warn(warning_message, label, current, uris, property_uris[1], property_uris[1], property_uris[1])
end
function SciKGTeX:print_entity(uri, label, hyperrefloaded)
if label ~= "" and hyperrefloaded then
tex.print(string.format('\\href{%s}{%s}', uri , label))
elseif label ~= "" then
tex.print(label)
elseif hyperrefloaded then
tex.print(string.format('\\url{%s}',uri))
else
tex.print(uri)
end
end
---------------------------- XMP class methods -------------------------------
function XMP:escape_xml_tags(s)
s = spaces_to_underscores(s)
s, i = s:gsub('[^%a%d%.-_]','')
if i > 0 then
SciKGTeX:warn([[Method escape_xml_tags: Forbidden characters.
Property %s can only contain letters, digits, underscores, hyphens and periods!
Forbidden characters removed.]], s)
end
s, i = s:gsub('^([Xx][Mm][Ll])','_%1')
if i > 0 then
SciKGTeX:warn([[Method escape_xml_tags: Forbidden characters.
Property %s can not start with xml!
Changed to _xml.]], s)
end
return s
end
function XMP:escape_xml_content(s)
s = s:gsub('&', '&')
s = s:gsub('>', '>')
return s:gsub('<', '<')
end
function XMP:add_line(...)
table.insert(self.lines, string.format(...))
end
function XMP:add_paper_node(paper_iri)
self.paper = {}
self.paper.contributions = {}
self.paper.id = paper_iri
self.paper.title = nil
self.paper.authors = {}
self.paper.researchfield = nil
end
function XMP:add_contribution(key, contribution_iri)
local contribution = {}
contribution.properties = {}
contribution.id = contribution_iri:gsub("<(default_contribution)>", "ORKG_default")
self.paper.contributions[key] = contribution
end
function XMP:extract_namespace_prefix(ns_arg)
if ns_arg == '' then
return nil
end
uri_and_prefix = ns_arg:split(',%s+?')
if #uri_and_prefix < 2 then
SciKGTeX:error([[Method addmetaproperty: No prefix found.
Unknown prefix, URI specification: %s.
Please specify the arguments as [prefix, URI]!]], ns_arg)
return nil
elseif #uri_and_prefix > 2 then
SciKGTeX:warn([[Method addmetaproperty: Too many arguments.
Too many arguments in prefix, URI specification: %s.
Excess arguments are ignored.]], ns_arg)
end
if not uri_valid(uri_and_prefix[2]) then
message = [[Method addmetaproperty: Invalid URI.
The given URI %s is not a valid choice!
Please use a resolvable URI starting with 'http'.]]
SciKGTeX:error(message, uri_and_prefix[2])
return nil
end
-- add the namespace if it has not been added yet
if self.namespaces[uri_and_prefix[1]]==nil then
self:add_namespace(uri_and_prefix[1], uri_and_prefix[2])
end
return uri_and_prefix[1]
end
function XMP:process_content(c)
c = self:escape_xml_content(c)
entity = resolve_entity(c)
if entity ~= false then
return entity
end
c = remove_latex_commands(c)
return c
end
function XMP:property_has_namespace(annotation_type)
annotation_type_t = annotation_type:split(':')
if #annotation_type_t > 1 then
annotation_type = annotation_type_t[2]
prefix = annotation_type_t[1]
else
annotation_type = annotation_type_t[1]
prefix = nil
end
return prefix, annotation_type
end
function XMP:set_title(title)
self.paper.title = title
end
function XMP:add_author(author)
table.insert(self.paper.authors, author)
end
function XMP:set_researchfield(researchfield)
self.paper.researchfield = researchfield
end
function XMP:add_annotation(contribution_ids, annotation_type, content, annotation_id)
local annotation = {}
-- check if a namespace is attached to the property specification
prefix, annotation_type = self:property_has_namespace(annotation_type)
annotation.type = annotation_type
annotation.content = content
annotation.id = annotation_id
annotation.type = self:escape_xml_tags(annotation_type)
-- take the prefix given, the prefix saved in the namespace dictionary or the default ns
annotation.prefix = prefix or self.property_ns[annotation.type] or 'orkg_property'
if not (prefix or self.property_ns[annotation.type]) then
orkg_entry = SciKGTeX.orkg_property_uri_map[annotation_type]
if orkg_entry then
-- property exists in ORKG
if type(orkg_entry) == 'table' then
-- more than two properties have this label
annotation.id = orkg_entry[1]
SciKGTeX:warn_ambiguous_orkg_label(annotation_type, orkg_entry)
else
-- one property with this label
annotation.id = orkg_entry
end
else
-- make a new property with the label
-- TODO: raise a warning message.
SciKGTeX:warn([[The property '%s' does not have a correspondence in the ORKG!
Consider reusing one of the properties in the ORKG (orkg.org) or adding the property to the knowledge graph online (https://orkg.org/addProperty).
To suppress this message use \addmetaproperty[orkg_property, http://orkg.org/property/]{<property id>}. Replace <property id> with the id of your newly created property.
Annotate in the text by using the contribution command like this: \contribution{<property id>}{<your text>}.
]], annotation_type, annotation_type)
annotation.id = self:escape_xml_tags(annotation.type)
end
else
annotation.id = self:escape_xml_tags(annotation.type)
end
-- register the use of the property in text
SciKGTeX:register_property(annotation.type)
-- check if the annotation was numbered
if contribution_ids == '' then
contribution_ids = '<default_contribution>'
end
contributions_ids_t = contribution_ids:split(',%s+?')
-- add the annotations at the specified contribution
for i, contribution_id in ipairs(contributions_ids_t) do
-- add a new contribution if it has not been added yet
if self.paper.contributions[contribution_id] == nil then
self:add_contribution(contribution_id, 'contribution_'..contribution_id)
end
-- add the property annotation to the list of properties of a contribution
-- check if the same annotation already exists (in case of double evaluation of the LaTeX command for example)
already_there = false
for _, prop in pairs(self.paper.contributions[contribution_id].properties) do
if prop.content == annotation.content and prop.type == annotation.type then
already_there = true
break
end
end
if not already_there then
table.insert(self.paper.contributions[contribution_id].properties, annotation)
end
end
end
function XMP:add_namespace(abbr, uri)
self.namespaces[abbr] = uri
end
function XMP:generate_rdf_root()
ns_key_array = {}
for ns, uri in pairs(self.namespaces) do table.insert(ns_key_array, ns) end
root_string = [[<rdf:RDF ]]
table.sort(ns_key_array)
for i, key in ipairs(ns_key_array) do
root_string = root_string .. "\n xmlns:" .. key .. [[="]] .. self.namespaces[key] .. [["]]
end
root_string = root_string .. [[>]]
return root_string
end
function XMP:generate_xmp_string(lb_char)
lb_char = lb_char or "\n"
if lb_char == "r" then
lb_char = "\r"
end
output_string = ""
sorted_contributions = {}
for cb_id, contribution in pairs(XMP.paper.contributions) do
table.insert(sorted_contributions,cb_id)
end
table.sort(sorted_contributions)
self:add_line('<?xpacket begin="?" id="%s"?>',self.paper.id)
self:add_line(self.XMP_TOP)
self:add_line(self:generate_rdf_root())
--print(debug.traceback())
if self.paper then
self:add_line(
' <rdf:Description rdf:about="https://www.orkg.org/orkg/paper/%s">',
self.paper.id
)
self:add_line(' <rdf:type rdf:resource="http://orkg.org/core#Paper"/>')
if self.paper.title ~= nil then
self:add_line(
' <orkg:hasTitle>%s</orkg:hasTitle>',
self:process_content(self.paper.title)
)
end
for i, author in ipairs(self.paper.authors) do
self:add_line(
' <orkg:hasAuthor>%s</orkg:hasAuthor>',
self:process_content(author))
end
if self.paper.researchfield ~= nil then
self:add_line(
' <orkg_property:P30>%s</orkg_property:P30>',
self:process_content(self.paper.researchfield)
)
end
for i, cb_id in pairs(sorted_contributions) do
contribution = self.paper.contributions[cb_id]
if i==1 then
if #sorted_contributions > 1 then
self:add_line(' <orkg:hasResearchContribution rdf:parseType="Collection">')
else
self:add_line(' <orkg:hasResearchContribution>')
end
end
self:add_line(
' <orkg:ResearchContribution rdf:about="https://www.orkg.org/orkg/paper/%s">',
self.paper.id .. "/" ..contribution.id
)
for j, property in ipairs(contribution.properties) do
self:add_line(
' <%s:%s>%s</%s:%s>',
property.prefix,
property.id,
self:process_content(property.content),
property.prefix,
property.id
)
end
self:add_line(' </orkg:ResearchContribution>')
if i == #sorted_contributions then
self:add_line(' </orkg:hasResearchContribution>')
end
end
self:add_line(' </rdf:Description>')
end
self:add_line('</rdf:RDF>')
self:add_line(self.XMP_BOTTOM)
self:add_line(self.PACKET_END)
return table.concat(self.lines, lb_char)
end
function XMP:attach_metadata_pdfstream(metadata_type)
local xmp_string = self:generate_xmp_string()
local new_pdf = pdf.obj {
type = 'stream',
attr = '/Type /'..metadata_type..' /Subtype /XML',
immediate = true,
compresslevel = 0,
string = xmp_string,
}
self.lines = {}
return new_pdf
end
function XMP:dump_metadata()
local xmp_string = self:generate_xmp_string()
local dir = get_output_dir() or '.'
f = io.open(dir .. '/' .. tex.jobname .. '.xmp_metadata.xml','w')
io.output(f)
io.write(xmp_string)
io.close(f)
end
luatexbase.add_to_callback('stop_run', function()
SciKGTeX:warn_unused_command()
if SciKGTeX.PRODUCE_XMP_FILE then
XMP:dump_metadata()
end
end, 'at_end')
-- Writing metadata packets
luatexbase.add_to_callback('finish_pdffile', function()
if XMP.paper then
if CONFORM_TO_PDFA then
catalog_key='SciKGMetadata'
else
catalog_key='Metadata'
end
local metadata_obj = XMP:attach_metadata_pdfstream(catalog_key)
local catalog = pdf.getcatalog() or ''
pdf.setcatalog(catalog..string.format('/%s %s 0 R', catalog_key, metadata_obj))
end
end, 'finish')
-- TODO: real identifier assigned
-- get the id or generate UUID
local output_dir = get_output_dir() or '.'
local header = read_header_of_file(output_dir .. '/' .. tex.jobname .. '.xmp_metadata.xml')
if header ~= nil then
id = extract_uuid_from_header(header)
end
if id == nil then
id = generate_UUID()
print('generate new id:', id)
end
XMP:add_paper_node(id)
XMP:add_namespace("rdf","http://www.w3.org/1999/02/22-rdf-syntax-ns#")
XMP:add_namespace("rdfs","http://www.w3.org/2000/01/rdf-schema#")
XMP:add_namespace("orkg","http://orkg.org/core#")
XMP:add_namespace("orkg_property","http://orkg.org/property/")
SciKGTeX.XMP = XMP
SciKGTeX.orkg_property_uri_map = {['data']='DATA',['Has ORCID']='HAS_ORCID',['addresses']='P0',['yields']='P1',['DOI']={'P10','wikidata:P356'},['uses library']='P1000',['uses graph']='P1001',['uses framework']='P1002',['url']={'P1003','url','P45084','SCHEMAORG:url','P186014','P186021','P186061','P186071'},['model']={'P1004','P20072'},['method']='P1005',['result']='P1006',['experiment']='P1007',['conducted at']='P1008',['participants']='P1009',['problem']='P11',['solution']='P12',['use case']='P13',['description']={'P14','description','SCHEMAORG:description','P106010','SKOSXL:description'},['implementation']={'P15','HAS_IMPLEMENTATION','P35'},['has']={'P16','P18022','P18055'},['has part']={'P17','P5085'},['part of']={'P18','PART_OF','wikidata:P361','P71202'},['input']='P19',['employs']='P2',['output']='P20',['robotised the workflow']='P2000',['Algorithm']='P2001',['Stable']='P2002',['Best complexity']='P2003',['Worst complexity']='P2004',['dataset']='P2005',['metric']={'P2006','HAS_METRIC'},['presents']='P2007',['Formalization']='P2008',['programming language']='P21',['environment']='P22',['defines']='P23',['field']='P24',['web site']='P25',['is a']='P3',['keywords']={'P3000','P186029','P186076'},['Feature extraction']='P3001',['Feature selection']='P3002',['Classification']='P3003',['precision']={'P3004','P5072'},['Sensitivity']='P3005',['Specificity']='P3006',['propose']='P3007',['approach']={'P33','HAS_APPROACH','P97035'},['evaluation']={'P34','P5091'},['has subfield']='P36',['refers to']='P4',['R4001']='P4000',['label']={'P4001','P5094','P184204'},['R4009']='P4002',['has specified output']='P4003',['dimension']='P4004',['code List']='P4005',['measure']='P4006',['structure']='P4007',['component']='P4008',['has value specification']={'P4009','OBI:OBI_0001938'},['top Concept Of']='P4010',['in Scheme']='P4011',['type']={'P4012','type'},['range']='P4013',['has specified numeric value']='P4014',['has specified input']='P4015',['Material']={'P4016','P7033','P9071','P18079','P18081','P25014','P25023','P27037','P29001','P34024','P34065','P34097','P34108','P34125','P34544','P34548','P35072','P35091','P35121','P37007','P37160','P37337','P37389','P37425','P37429','P37531','P41307','P43054','P43058','P44130','P45005','P54035','P54038','P68006','P68015','P69008','P97057','P110033','P110035','P110038','P117052','P183117'},['Data']={'P4017','P18007','P18080','P25015','P25024','P27038','P27040','P29002','P34025','P34066','P34071','P34545','P34547','P34549','P34551','P34553','P35122','P37163','P37336','P37392','P41252','P41261','P41308','P41311','P43059','P45006','P51000','P54036','P54039','P68008','P68016','P69007','P110037'},['Process']={'P4018','PROCESS','P25016','P27042','P29003','P34026','P34067','P34069','P34126','P35124','P37161','P37390','P41269','P41296','P41297','P41312','P43053','P43057','P68007','P110036','P117053'},['Company']='P4019',['MAPE']='P4020',['MAE']='P4021',['Institution']='P4022',['Person']='P4023',['Challenge']='P4024',['from Chartered Institute of Library and Information Professional’s Library and Information Gazette']='P4025',['over the period May 2006-2007']='P4026',['general computing skills']='P4031',['between advertisements and Information National Training Organisation and Library and Information Management Employability Skills']='P4032',['available']='P4033',['is']={'P4034','P4039','P20045','P20073','P20156','P20169'},['between']={'P4035','P4040'},['using']={'P4036','P4041'},['listing']={'P4037','P4042'},['could be applicated to']={'P4038','P4043'},['restricted to']='P4044',['SASD']='P4045',['SADASdAD']='P4046',['has size']='P4047',['from']={'P4048','P23062','P23101'},['Has edges']='P4050',['provided by']='P4051',['is independent of']='P4052',['is about']='P4053',['based on']={'P4054','wikidata:P144'},['sample size']={'P4055','P57104'},['has methodology']='P4056',['Planung']='P4057',['Aktivität']='P4058',['Has url']='P4059',['capable of']='P4060',['is dependent of']='P4061',['showing']='P4062',['detecting']='P4063',['providing']='P4064',['finding']='P4065',['employing']='P4066',['leveraging']='P4067',['recognizing and normalizing']='P4068',['attaining']='P4069',['required skills for high-level staticians are']='P4070',['Jobs for lower level staticians are restricted to']='P4071',['sdfdasfsdfsf']='P4072',['fastText']='P4073',['Multipartite Rank']='P4074',['users']='P4075',['describes']='P4076',['source code']={'P4077','HAS_SOURCE_CODE'},['Information science']='P4078',['uses']={'P5','USES','uses','P45096','P71204','wikidata:P2283','P126000'},['author']={'P6','P27','wikidata:P50','P186023','P186069'},['affiliation']={'P7','P186017','P186073'},['email']='P8',['ORCID']='P9',['has published version']='hasPublishedVersion',['icon']='icon',['onHomepage']='onHomepage',['Heuristic followed']='P5000',['deals with']='P5001',['uses similarity']='P5002',['Performance metric']='P5003',['Evidence']='P5004',['Uncertainty']='P5005',['Limitations']='P5006',['Clustering']='P5007',['Graph']='P5008',['Task']='P5009',['Test questions']='P5010',['Train questions']='P5011',['example of usage']='exampleOfUsage',['Question language']='P5012',['Language']={'P5013','P41926'},['Question amount']='P5014',['Recall']={'P5015','P71079'},['F-measure']='P5016',['Runtime']='P5017',['On']='P5018',['Technique']={'P5019','P70000'},['Question analysis task']='P5020',['Phrase mapping task']='P5021',['Disambiguation task']='P5022',['Query construction task']='P5023',['Keyword']='P5024',['Filter']='P5025',['Sampling']={'P5026','P5037'},['Aggregation']={'P5027','P5038'},['Incremental']={'P5028','P5039'},['Disk']={'P5029','P5040'},['Domain']={'P5030','P5041','P41924'},['Application type']={'P5031','P5042'},['Data types']='P5032',['Visualization types']='P5033',['User recommendation']='P5034',['Preferences']='P5035',['Statistics']='P5036',['Approach type']='P5043',['Document type']='P5044',['Summary usage']='P5045',['Summary characteristics']='P5046',['utilizes']='P5047',['sub system']='P5048',['location']={'P5049','wikidata:P276'},['see also']='P5050',['manufacturer']={'P5051','wikidata:P176'},['Webrosensor Oy']='P5052',['observes']='P5053',['vibration']='P5054',['WBS CM301 Datasheet']='P5055',['datasheet']='P5056',['Accelerometer vibration sensor (sd1)']='P5057',['Accelerometer vibration sensor (sd2)']='P5058',['Accelerometer vibration sensor (sd3)']='P5059',['AXIS 211W Wireless Network Camera']='P5060',['AXIS Communications']='P5061',['AXIS 211W Datasheet']='P5062',['A sensor network']='P5063',['website']='P5064',['Waikato Environment for Knowledge Analysis']='P5066',['version']={'P5067','version','P45088','SCHEMAORG:version'},['acronym']='P5068',['Observation']='P5069',['class']={'P5070','wikidata:P2308','sh:class'},['sensor']='P5071',['recall']='P5073',['actual']='P5074',['predicted']='P5075',['instances']='P5076',['Apache Jena']='P5077',['Apache Cassandra']='P5079',['Apache Storm']='P5080',['purpose']='P5081',['operation']='P5082',['mode']={'P5083','P57007'},['value']={'P5086','P37446','P41815','HAS_VALUE','CSVW_Value','P88000'},['number of hidden neurons']='P5087',['classes']={'P5088','P119129'},['algorithm']='P5089',['configuration']='P5090',['is property of']='P5092',['pavement']='P5093',['class mappings']='P5095',['rule']='P5096',['performance']='P5097',['time']='P5098',['R6900']='P5099',['R6904']='P5100',['R6906']='P5101',['R6908']='P5102',['order']={'P5103','order','sh:order'},['R6915']='P5104',['R6918']='P5105',['R6926']='P5106',['R6928']='P5107',['R6933']='P5108',['R6935']='P5109',['R6938']='P5110',['R6939']='P5111',['results']={'P6001','P59031','wikidata:P2501'},['Results']={'P6002','P37365','P201014'},['has ingredient']='P6003',['has property']={'P6004','hasProperty'},['has material']='P7000',['wha']='P7001',['has user license']='P7002',['has number']={'P7003','OEO:OEO_00140178'},['unit']={'P7004','P45076','P47007','P110124','unit'},['targeting']='P7005',['in presence of']='P7007',['by using']='P7008',['Supports RDF']='P7009',['Uses graph store']='P7010',['Performed at']='P7011',['Cohort size']='P7012',['Has formula']='P7013',['Demo video']='P7014',['Architecture']='P7015',['Figure']='P7016',['R8136']='P7017',['R8138']='P7018',['R8141']='P7019',['R8145']='P7020',['R8148']='P7021',['R8150']='P7022',['R8156']='P7023',['R8160']='P7024',['R8167']='P7025',['R8168']='P7026',['R8169']='P7027',['R8171']='P7028',['R8176']='P7029',['R8179']='P7030',['R8183']='P7031',['R8180']='P7032',['Ontology']={'P7034','P7211','P7221'},['Full name']={'P7035','P7212','P7222'},['Example class']={'P7036','P7213'},['Description']={'P7037','P7224'},['Class count']='P7038',['Object property count']={'P7039','P7216','P7226'},['Data property count']={'P7040','P7217','P7227'},['Uses ontology']={'P7041','P7218','P7228'},['IRI']={'P7042','P7219','P7229'},['Website']={'P7043','P7220','P7230','website'},['Has video']={'P7044','HasVideo'},['Related video']='P7045',['Semantic representation']='P7046',['Scope']={'P7047','P44173'},['Prospective/retrospective']='P7048',['Acquisition']='P7049',['Metadata']='P7050',['High level claims']='P7051',['Supports research data']='P7052',['Natural language statements']='P7053',['Discourse']='P7054',['Data type']='P7055',['Knowledge representation']='P7056',['has subProblem']='P7057',['Results from']='P7058',['Functions identical to']='P7059',['has characteristic']='P7061',['achieved by']='P7062',['establishes']='P7063',['has length']='P7064',['has feature']='P7065',['has function']='P7066',['deployed in']='P7067',['Measures']='P7068',['measured by']='P7069',['has duration']='P7070',['Has finding']='P7071',['has conclusion']='P7072',['uses tool']='P7073',['Used for']='P7074',['has outcome']='P7075',['Addressed by']='P7076',['has objective']='P7077',['has object']='P7078',['Investigates']='P7079',['Uses technique']='P7080',['Analyzed for features']='P7081',['Implemented as']='P7082',['Analyses of']='P7083',['Observed in']='P7084',['has observations']='P7085',['includes']='P7086',['has disposition']='P7087',['At time period']='P7088',['has cause']={'P7089','wikidata:P828'},['replaced by']='P7090',['Includes analysis of']='P7091',['Operates in']='P7092',['lower than']={'P7093','LOWER_THAN','P71200'},['applied to']='P7094',['produces']={'P7095','PRODUCES'},['confirmed by']='P7096',['revealed by']='P7097',['has participants characteristic']='P7098',['has data']={'P7099','P88002'},['has evidence']='P7100',['has elements']='P7101',['has reference']={'P7102','HasReference'},['method applied to']='P7103',['method applied to elastin yields staining result']='P7104',['method applied to collagen fiber yields staining result']='P7105',['method applied to filament yields staining result']='P7106',['method applied to unit membranes yields staining result']='P7107',['realizes']='P7108',['Global Climate Model']='P7110',['has name']='P7111',['has version']='P7112',['has quality']='P7113',['has documentation']='P7114',['Has Horizontal Discretization']='P7115',['River Routing']='P7116',['Pole Treatment']='P7117',['tripolar grid']='P7118',['Scheme method']='P7119',['Has Prognostic Variable']='P7120',['model family']='P7121',['has spatial resolution']='P7122',['drift of sea level height']='P7123',['realistic energy budget']='P7124',['The Northern Hemisphere geographical distribution of sea ice (1979-1998) is generally well simulated, particularly in winter']='P7127',['The total Arctic sea ice extent is underestimated from August to November in CNRM-CM5.1 due to a significant underestimation of sea ice off Alaska and over the eastern part of the Siberian basin']='P7128',['The simulated Antarctic sea ice extent is underestimated by 1.6 x 10^6 km^2 in September']='P7129',['Simulated Antarctic sea ice extent']='P7130',['Total Arctic sea ice extent']='P7131',['Sea ice off Alaska']='P7132',['Sea ice over the eastern part of the Siberian Basin']='P7133',['cytoplasm']='P7134',['has horizontal resolution']='P7135',['Coupling With Atmosphere']='P7136',['Has horizontal resolution']='P7137',['Artificial island ']='P7138',['Finite differences ']='P7139',['Arakawa B-grid']='P7140',['FTW']='P7141',['spectral']='P7142',['Centered finite differences']='P7143',['Earth System Model']='P7144',['Carbon Cycle']='P7145',['has species']='P7146',['sequencing platform']='P7147',['reads per run']='P7148',['read length in base pairs (paired-end*) ']='P7149',['reads per run in Million']='P7150',['runtime in days']='P7151',['total data output yield in Gigabyte']='P7152',['data output rate in Gigabyte per day']='P7153',['reagents cost in $']='P7154',['cost per Gigabyte data output in $']='P7155',['cost of resequencing a human genome with 30X coverage in $']='P7156',['cost of machine in $']='P7157',['Has scheme']='P7158',['Basic Approximations']='P7159',['Fixed grid']='P7160',['Centered finite differences ']='P7161',['Fixed grid ']='P7162',['major ice sheets']='P7163',['static ice']='P7164',['Minor ice caps']='P7165',['The horizontal discretisation is on an orthogonal curvilinear grid nominally one degree for both longitude and latitude. refinements: (1) a tripolar grid north of 65°N ; (2) a cosine dependent (Mercator) grid south of 30°S; (3) a refinement of latitudinal spacing to 1/3° between 10°S and 10°N ']='P7166',['has application']={'P7167','P190005'},['even coverage']='P7168',['well resolved']='P7169',['not stained']='P7170',['poorly resolved']='P7171',['Oki T., and Y.C. Sud (1998) Design of the Total Runoff Integrating Pathways [TRIP] - A global river channel network.. Earth Interactions, 2. Add to Favorites Track Citation Download Citation Email https://doi.org/10.1175/1087-3562(1998)002<0001:DOTRIP>2.3.CO;2']='P7172',['Cold deep snow albedo ']='P7173',['Bare ice albedo']='P7174',['Melting deep snow albedo']='P7175',['The horizontal discretisation is on an orthogonal curvilinear grid nominally one degree for both longitude and latitude. It has the following refinements: (1) a tripolar grid (Murray 1996) is used north of 65°N to preclude a singularity at the geographical north pole; (2) a cosine dependent (Mercator) grid is used south of 30°S to avoid large grid cell aspect ratios and also to better resolve zonal currents in the Southern Ocean and at the Antarctic margin; and, (3) a refinement of latitudinal spacing to 1/3° is applied between 10°S and 10°N to better resolve predominantly zonal equatorial ocean currents.']={'P7176','P7177'},['Vertical Physics']='P7178',['Critical Richardson number']='P7179',['Radiation scheme']='P7180',['Edwards, J.M. and A. Slingo (1996) Studies with a flexible new radiation code. I: choosing a configuration for a large-scale model Q. J. R. Meteorol. Soc., 122, 689-720 ']={'P7181','P7182'},['Tripleclouds scheme']='P7183',['Surface Air Temperature']='P7184',['bias of global mean surface air temperature']='P7187',['RMSE of global mean surface air temperature']='P7188',['Bias of global mean surface air temperature against ERA-Interim reanalysis']='P7189',['RMSE of global mean surface air temperature against ERA-Interim reanalysis']='P7190',['Bias of mean surface temperature over northern hemisphere land against ERA-Interim reanalysis:']='P7191',['Bias of mean surface temperature over high latitudes Southern Ocean (>60°) against ERA-Interim reanalysis']='P7192',['Bias of mean surface temperature over high latitudes Southern Ocean (>60°) against ERA-Interim reanalysis']='P7193',['Bias of global mean precipitation against GPCP climatology']='P7194',['Cloud scheme']='P7195',['Bias of northern hemisphere (0°-60°N) annual mean cloud amount against the D2 ISCCP observations ']={'P7196','P7197'},['Bias of southern hemisphere (60°S-0°) annual mean cloud amount against the D2 ISCCP observations ']={'P7198','P7199'},['sea-ice volume trend']='P7200',['Sea-ice volume trend in the northern hemisphere']={'P7201','P7203'},['Sea-ice volume trend in the southern hemisphere']='P7202',['Trend of SST']='P7204',['Bias of global mean SST']='P7205',['Bias of global mean SSS against the WOA2009 data']='P7206',['Dynamical Core']='P7207',['Scheme Type']='P7208',['1.4°']='P7209',['Solution ']='P7210',['venue']='HAS_VENUE',['reference']={'reference','P41817'},['same as']='SAME_AS',['applies']='P8000',['proposes']='P8001',['are based on']='P8002',['extracts']='P8004',['scales up']='P8005',['1.4 °']='P8006',['Template of research field']='TemplateOfResearchField',['Template of predicate']='TemplateOfPredicate',['Template of class']='TemplateOfClass',['Template sub-template']={'TemplateSubTemplate','TemplateSub'},['Template of research problem']='TemplateOfResearchProblem',['Template component']='TemplateComponent',['Template component property']='TemplateComponentProperty',['Template component value']='TemplateComponentValue',['has study design dependent variable']='P9000',['has dataset']={'P9001','hasDataset','HAS_DATASET','P190001'},['has p-value']='P9002',['value specification']={'P9003','P34124'},['specified numeric value']='P9004',['study design dependent variable']='P9005',['p-value']='P9006',['CPLEX']='P9007',['Modality']={'P9008','P69003'},['Pretrained model']='P9009',['Clustering method']='P9010',['mean Average Precision']='P9011',['image to text retrieval']='P9012',['R@1']='P9013',['Image-to-Text Retrieval ']='P9014',['Text-to-Image Retrieval']='P9015',['R@10']='P9016',['Median Rank']='P9017',['Has model']='P9018',['Has heuristic']='P9019',['Has exact solution method']='P9020',['Visual']='P9021',['electrolyte']='P9022',['has instance']='P9023',['Source']={'P9024','P55018'},['has system specification']='P9025',['has performance']='P9026',['has evaluation score']='P9028',['Has experimental datasets']='P9037',['Notes']='P9039',['Study date']='P9040',['Methods']='P9041',['Approaches']='P9042',['95% Confidence interval']='P9044',['has age']='P9057',['has gender']='P9058',['has illness']='P9059',['date of illness onset']='P9060',['date of hospital admission']='P9061',['has symptom']='P9062',['receives therapy']='P9063',['has drug']='P9064',['has technique']='P9065',['RNeasy Plus Universal Mini kit']='P9066',['Qiagen']='P9067',['has date ']='P9069',['has instrument']='P9070',['has patient']='P15000',['related to']='P15001',['has GenBank accession number']='P15002',['has source']='P15003',['Quick summary']='P15004',['Features used and feature selection']='P15005',['Machine learning algorithms']='P15006',['Conducted by']='P15007',['Criteria defined by']='P15008',['Intended audience']='P15009',['Intended use']='P15010',['Interview, Survey or Brainstorming']='P15011',['Tested various designs']='P15012',['Implemented into car mock-up']='P15013',['Used prototypes for early feedback']='P15014',['Tested usability or user eTperience']='P15015',['Tested driving performance']='P15016',['Implemented as display mock-up']='P15017',['Implemented into real vehicle']='P15018',['Feature Extraction']='P15019',['Offline Database']='P15020',['Classifier']='P15021',['Algorithm name']='P15022',['Advantages']='P15023',['Disadvantages']='P15024',['Lexicon']='P15025',['Lemmas']='P15026',['# Entries']='P15027',['Labels']='P15028',['Tested for SA']='P15029',['POS Tags']='P15030',['MSA']='P15031',['Dialect']='P15032',['Emoticons']='P15033',['Ontologies']='P15035',['Inputs/Outputs']='P15036',['Pre/Post-conditions']='P15037',['Protocols']='P15038',['QoS']='P15039',['Specification Languages']='P15040',['Matching Result Degrees']='P15041',['Incomplete Knowledge']='P15042',['Variational Scope']='P15043',['Heuristics & Simplif.']='P15044',['Calculation Concepts']='P15045',['Nature of Traceability']='P15046',['Tool-Support']='P15048',['Year of Development']='P15049',['Area of use']='P15050',['Objective']={'P15051','P67098','P201011'},['Accuracy/Results']='P15052',['Future work/challenges']='P15053',['Artefacts']='P15054',['Mechanisms providing feedback']='P15055',['Information sources']='P15056',['Benefits']='P15057',['Types of feedback']='P15058',['Category']={'P15059','P96002'},['Highlights']='P15060',['Technology Bases']='P15061',['Game Genres']='P15062',['Major Contributions']='P15063',['esearch Method']='P15064',['Agile Method']='P15065',['Focus']='P15066',['Publication type']='P15067',['Research Method']='P15068',['# of Subjects']='P15069',['Studied Picking System']='P15070',['System']={'P15071','P59005'},['Year']={'P15072','P37543'},['Vis. Types']='P15073',['Recomm.']='P15074',['Incr.']='P15075',['App. Type']='P15076',['File Size']='P15077',['Avg. size of transactions']='P15078',['Avg. size of itemsets']='P15079',['Threshold']='P15080',['Time(sec)']='P15081',['Memory Usage']='P15082',['catalysts']='P15083',['feedgas composition']='P15084',['T (°C)']='P15085',['P (MPa)']='P15086',['conv (%)']='P15087',['selectivity (%)']='P15088',['SV (ml·g −1·h−1cat)']='P15089',['substrate']='P15090',['catalyst']='P15091',['Analyte']='P15092',['Application']={'P15093','P180029'},['Sensitivitya']='P15094',['Detection limit']='P15095',['Experimental Dataset']='P15096',['Groundtruth Speci cation']='P15097',['Performance Results']='P15098',['Error Analysis']='P15099',['Comparative Evaluation']='P15100',['Key Idea']='P15101',['Physical Layout Representation']='P15102',['Logical Structure Representation']='P15103',['Output Representation']='P15104',['Logical Labels']='P15105',['Application Domain']='P15106',['Material linearity - Adhesive - Linear']='P15107',['Material linearity - Adhesive - Nonlinear']='P15108',['Material linearity - Adherend - Linear']='P15109',['Material linearity - Adherend - nonlinear']='P15110',['Adherends - Isotropic']='P15111',['Adherends - Composite']='P15112',['Adherends - Similar']='P15113',['Adherends - Dissimilar - Thickness']='P15114',['Adherends - Dissimilar -Material']='P15115',['Adhesive stresses - sx']='P15116',['Adhesive stresses - sy']='P15117',['Adhesive stresses - txy']='P15118',['Solution - Closed-form']='P15119',['Solution - Numerical']='P15120',['Place of experiment']='P15121',['Population']='P15122',['Procedure']='P15123',['data analysis']='P15124',['Concluding remarks']='P15125',['Comments']='P15126',['Governmnt regulation']='P15127',['Illegal activities']='P15128',['National statistics (GNP)']='P15129',['Labor market or status of labor (unregul., no soc. benef., work condit., etc.)']='P15130',['Tax evas. or unreport. income']='P15131',['Activity’s size (small scale of operat.)']='P15132',['Professional status (self-empl. Or family-based)']='P15133',['Activity’s regulation or registration']='P15134',['Networks']='P15135',['Autonomy and flexibility']='P15136',['Survival']='P15137',['Political (legal aspects) Governmnt regulation']='P15138',['Criteria Economic Activity’s size (small scale of operat.)']='P15139',['Social Autonomy and flexibility']='P15140',['Demand']='P15141',['Topology']='P15142',['outing']='P15143',['Inventory']='P15144',['Fleet composition']='P15145',['Fleet size']='P15146',['Inventory fleet']='P15147',['Composition']='P15148',['Products']='P15149',['Routing aspects']='P15150',['Inventory management aspects']='P15151',['Sources']={'P15152','P65071'},['Chitosanase family']='P15153',['Applications']='P15154',['Protocol']='P15155',['innovation']='P15156',['Cluster count']='P15157',['Inter-cluster topology']='P15158',['CH election']='P15159',['Mobility']='P15160',['Location awareness']='P15161',['Load balancing']='P15162',['Node type']='P15163',['Nature']='P15164',['Cluster Properties Cluster size']='P15165',['Intra com.']='P15166',['Inter com.']='P15167',['CH Properties Mobility']='P15168',['ole']='P15169',['Objectives']='P15170',['Clustering Process CH Election']='P15171',['Alg. Complexity']='P15172',['Dynamism']='P15173',['CH Properties Mobility Node type']='P15174',['Column']='P15175',['Industry']='P15176',['Technical infrastructure']='P15177',['System integration']='P15178',['Data processing']='P15179',['Activation method']='P15180',['Group that reacts (with activated matrix)']='P15181',['Polymer']='P15182',['Group hat reacts']='P15183',['eagent']='P15184',['Activated group produced']='P15185',['Group that reacts (with activated matrix)']='P15186',['Sample Period']='P15187',['Nominal or real exchange rate used']='P15188',['Countries and Estimation technique used']='P15189',['Main Result']='P15190',['Name']={'P15191','P37605'},['System model']='P15192',['Control model']='P15193',['Fault tolerance']='P15194',['Simulator']='P15195',['Linux']='P15196',['Windows']='P15197',['Standards and technologies used']='P15198',['Open source']='P15199',['Behavior coordination']='P15200',['Real time']='P15201',['Distributed environment']='P15202',['Dynamic wiring']='P15203',['Security']='P15204',['Elements']='P15205',['Authors']='P15206',['Date']='P15207',['Steel Grade']='P15208',['Special Notes']='P15209',['Configuration of system']='P15210',['Control approach']='P15211',['Operating conditions']='P15212',['Undershoot [pu] 1 Δf1']='P15213',['Undershoot [pu] 2 Δf2']='P15214',['Column2 ΔPtie']='P15215',['Settling time (s) 1 Δf1']='P15216',['Settling time (s) 2 Δf2']='P15217',['Column3 ΔPtie']='P15218',['Controller design']='P15219',['Control structure']='P15220',['│ACE1│ Avg [pu]']='P15221',['│ACE2│ Avg [pu]']='P15222',['│ACE3│ Avg [pu]']='P15223',['Undershoot [pu] Δf']='P15224',['Δf2']='P15225',['Δf3']='P15226',['Undershoot [pu] 3 ΔPtie']='P15227',['Settling time (s) 3 ΔPtie']='P15228',['Correlation']='P15229',['Performance indicator (in per-capita terms if not otherwise indicated)']='P15230',['Aggregation level']='P15231',['Time perspective (CS = cross-section, L = longitudinal)']='P15232',['Age indicators']='P15233',['Age–performance patternc,d OLS / ordinary least square regression']='P15234',['FE / controlled for omitted variables by inclusion of fixed effects']='P15235',['IV / instrumental variable approach']='P15236',['Countries']='P15237',['Period']='P15238',['Methodology']='P15239',['Conclusion (s) EC-Y (from energy consumption to economic growth )']='P15240',['Y-EC (from ecnomic grwth to energy consumption )']='P15241',['Y2EC (feedback hypothesis )']='P15242',['YaEC neutral hypothesis between energy consumption and economic growth )']='P15243',['Conclusion (s) ELC-Y (electricty consumption to economic growth )']='P15244',['Y-ELC (from ecnomic grwth to electricty consumption )']='P15245',['Y2E (feedback hypothesis )']='P15246',['YaELC (neutral hypothesis between electricty consumption and economic growth)']='P15247',['No.']='P15248',['Country']='P15249',['Conclusion (s) NE-Y(nuclear energy consumption to economic growth )']='P15250',['Y-NE (from ecnomic grwth to nuclear energy consumption )']='P15251',['Y2NE (feedback hypothesis )']='P15252',['YaNE (neutral hypothesis between nuclear energy consumption and economic growth )']='P15253',['Conclusion (s) NE-Y (from nuclear energy consumption to economic growth)']='P15254',['Educational context']='P15255',['Evaluator']='P15256',['Result']='P15257',['Topic']='P15258',['Taxonomy stage: Step']='P15259',['Computational platform']='P15260',['Age (years)']='P15261',['Sex']='P15262',['Chief Clinical presentation']='P15263',['Size (mm)']='P15264',['Follow up (months)']='P15265',['Container flow']='P15266',['oute']='P15267',['Market']='P15268',['emarkable factor']='P15269',['Inventory policy']='P15270',['Main question']='P15271',['Testing profile']='P15272',['Measurements']='P15273',['Cooling']='P15274',['Temperature swing and Tm ax']='P15275',['Failures and indicators']='P15276',['Failure mechanism']='P15277',['Circuit']='P15278',['Age']='P15279',['Site']='P15280',['Size (cm)']='P15281',['Weight (g)']='P15282',['Symptoms and signs']='P15283',['Laboratory fi ndings']='P15284',['Surgery']='P15285',['RT/Neoadjuvant or adjuvant CT']='P15286',['Recurrence']='P15287',['Treatment of recurrence']='P15288',['Follow-up']='P15289',['Number of Objectives']='P15290',['Algorithm(s)']='P15291',['Tool']={'P15292','Tool'},['Quality Indicators']='P15293',['Has ressource']='P15294',['Has resource']='P15295',['Has vocabulary']='P15296',['Gramatically augmented ontology The results were quite promising, as the ontology contributed to improvements in the analysis of signs and in the generation of Ukrainian natural language']='P15297',['Tools']='P15298',['Some of the simulation model characteristics']='P15299',['Performance measures']='P15300',['Author’s conclusions']='P15301',['AMHS configuration']='P15302',['Strategy']='P15303',['Objective function(s)']='P15304',['Application area studied']='P15305',['Type of question asked']='P15306',['esearch method & question set']='P15307',['Subjects']='P15308',['# convolutional layer']='P15309',['# fully connected layer, # features']='P15310',['3D model']={'P15311','wikidata:P4896'},['Cascaded method']='P15312',['Databases']='P15313',['Video (v)/image (i)']='P15314',['Gray (g)/color (c)']='P15315',['Amount of data']='P15316',['Variations']='P15317',['Number of landmark points']='P15318',['# points']='P15319',['fps']='P15320',['Detection (d) or tracking (t)']='P15321',['Realtime (y) or not (n)']='P15322',['Source code (sc) or binary code (bc)']='P15323',['Number of points']='P15324',['Links']='P15325',['Normalized error']='P15326',['Coverage']='P15327',['Country zone']='P15328',['Types of literature reviews']='P15329',['Paper']={'P15330','P83016'},['Journals/ (papers)']='P15331',['Events/ (papers)']='P15332',['Other sources/ (papers)']='P15333',['Foci']='P15334',['Factor']={'P15335','P52037'},['Papers']='P15336',['Publication type Period']='P15337',['Papers Foci']='P15338',['Types of literature Publication reviews type']='P15339',['Context']='P15340',['Power of income']='P15341',['Type of data']='P15342',['Shape of EKC']='P15343',['EKC Turnaround point(s)']='P15344',['EKC Turnaround point(s) 2']='P15345',['Tailoring feedback']='P15346',['inter- human interaction']='P15347',['user targeting']='P15348',['adaptation']='P15349',['goal setting']='P15350',['context awareness']='P15351',['self learning']='P15352',['Building']='P15353',['Building Methodology']='P15354',['Key findings']='P15355',['Sr. No']='P15356',['Techniques']='P15357',['Developer']='P15358',['Advantage']='P15359',['Disadvantage']='P15360',['Authenticity Technique']='P15361',['Sybil Attacks']='P15362',['Node Imper’']='P15363',['Sending False Info’']='P15364',['ID Disc’']='P15365',['Confidentiality (Privacy) Technique']='P15366',['Non-repudiation Technique']='P15367',['Availability Technique']='P15368',['Integrity Technique']='P15369',['Challenges']='P15370',['#Test']='P15371',['Accuracy (%) deyeo0:']='P15372',['deyeo0:']='P15373',['Time (s)']='P15374',['n']='P15375',['Aim of the study']='P15376',['Study population']={'P15377','P201013'},['eferred index']='P15378',['efered index']='P15379',['Disaster phase Pre-disaster']='P15380',['Post-disaster']='P15381',['Application case Earthquake']='P15382',['Hurricane']='P15383',['Flood']='P15384',['Objectives First-stage']='P15385',['Second-stage']='P15386',['Decisions First-stage']='P15387',['Second-stage2']='P15388',['Uncertainty on the first-stage']='P15389',['Special features']='P15390',['Problematic assumptions']='P15391',['Uncertainty in the first-stage']='P15392',['Features']='P15393',['Problematic assumption']='P15394',['Solution method']='P15395',['Solution Exact']='P15396',['Non-exact']='P15397',['Problem-tailored heuristic']='P15398',['Metaheuristic']='P15399',['Matheuristic']='P15400',['Motivation']='P15401',['Spatial structure/population heterogeneity']='P15402',['Population structure']='P15403',['Population size']='P15404',['Recombination Within island']='P15405',['Migration']='P15406',['Aging']='P15407',['Self-adaptation']='P15408',['Important implementation parameters / factors']='P15409',['Other facts']='P15410',['Definition']='P15411',['Middle-income range: thresholds']='P15412',['Database']='P15413',['Time period']='P15414',['Number of MIT countries']='P15415',['egions most affected by the MIT']='P15416',['Method/Technique(s)/ Database']='P15417',['Result/ Accuracy']='P15418',['Conclusion']='P15419',['Future scope']='P15420',['Types']='P15421',['Objective/estimate(s) process systems']='P15422',['Systems applied']='P15423',['Positive highlights']='P15424',['Ranker']='P15425',['Computational complexity']='P15426',['Density']='P15427',['Diversity']='P15428',['Close to boundary']='P15429',['Far from boundary']='P15430',['Probabilistic/ uncertainty of ranker']='P15431',['Myopic']='P15432',['Quality attribute']='P15433',['Abs. Factory']='P15434',['Builder']='P15435',['Factory Method']='P15436',['Prototype']='P15437',['Singleton']='P15438',['Adapter']='P15439',['Bridge']='P15440',['Composite']='P15441',['Decorator']='P15442',['Facade']='P15443',['Flyweight']='P15444',['Proxy']='P15445',['Chain of Resp.']='P15446',['Command']='P15447',['Interpreter']='P15448',['Iterator']='P15449',['Mediator']='P15450',['Memento']='P15451',['Observer']='P15452',['State']='P15453',['Template']='P15454',['Visitor']='P15455',['Samples']='P15456',['No. of samples']='P15457',['C. jejuni (%)']='P15458',['C. coli (%)']='P15459',['Others (%)']='P15460',['Sp']='P15461',['Comparison']='P15462',['HPLC global']='P15463',['CHG']='P15464',['CG']='P15465',['Global']='P15466',['Others']='P15467',['Gasifiers']='P15468',['Cost']='P15469',['Reported capacity(MWth)']='P15470',['Year data']='P15471',['Cost V2012 (400 MWth)']='P15472',['Scale factor']='P15473',['Reported cost']='P15474',['Reported capacity (bbl/d)']='P15475',['Reported capacity (MWth fuel)']='P15476',['Cost V2012 (150 MW unit)']='P15477',['Plant type']='P15478',['ISBL cost (MV)']='P15479',['Total capital investment (MV)']='P15480',['Published cost (V/GJ LHV)']='P15481',['Updated cost (V 2012/ GJ LHV)']='P15482',['Capacity (MWth)']='P15483',['Plant cost (MV)']='P15484',['Plant cost (MV 2012)']='P15485',['Plant cost (400 MW MV 2012)']='P15486',['Diesel (V/l']='P15487',['Diesel 400 MW (V2012/l)']='P15488',['Plant cost (M$)']='P15489',['Plant cost (M$ 2012)']='P15490',['Plant cost (1000 t/h MV 2012)']='P15491',['BEOP ($/barrel)']='P15492',['BEOP (V2012/barrel averaged coal price)']='P15493',['Diesel (V2012/l)']='P15494',['Supervised / unsupervised']='P15495',['Dependency on the underlying models']='P15496',['Assumption of data availability']='P15497',['Computational cost']='P15498',['Criterion A']='P15499',['Resources and their constraints']='P15500',['job complexity and routing flexibility']='P15501',['Sequencing']='P15502',['Mono/multi']='P15503',['Pure/hybrid']='P15504',['Country / Plant part CS']='P15505',['Collection site']='P15506',['Plant material status']='P15507',['Isolation Procedure']='P15508',['Oil yield']='P15509',['Main components (P5%)']='P15510',['Measurement type']='P15511',['Country of study']='P15512',['Data and sample size']='P15513',['Population under analysis']='P15514',['Data collec- tion']='P15515',['Over-educa- tion incidence (percentages)']='P15516',['Satellite sensor']='P15517',['Band']='P15518',['Image resolution [m] PAN MS']='P15519',['Min. size [m]']='P15520',['Methods of vessel candidate detection']='P15521',['Methods of discrimination/ classification']='P15522',['Eval. of results']='P15523',['Main purpose']='P15524',['No']='P15525',['political incentives (POLIN) - political competition']='P15526',['political incentives (POLIN) voter participation']='P15527',['political incentives (POLIN) - legislative power']='P15528',['political incentives (POLIN) - interest group competition']='P15529',['political incentives (POLIN) - government size']='P15530',['social incentives (SOCIN) - public media']='P15531',['social incentives (SOCIN) - interparty competition']='P15532',['social incentives (SOCIN) - activity']='P15533',['social incentives (SOCIN) - voter wealth']='P15534',['social incentives (SOCIN) - regional culture']='P15535',['social incentives (SOCIN) - internet access']='P15536',['social incentives (SOCIN) - voter demographic']='P15537',['financial incentives (FININ) - reliance on debt']='P15538',['financial incentives (FININ) - government wealth']='P15539',['financial incentives (FININ) - reliance on federal']='P15540',['institutional incentives (INSIN) - professionalism']='P15541',['institutional incentives (INSIN) - population size']='P15542',['institutional incentives (INSIN) - staff demographic']='P15543',['institutional incentives (INSIN) - government type']='P15544',['institutional incentives (INSIN) - staff selection']='P15545',['institutional incentives (INSIN) - IT sophistication']='P15546',['governance incentives (GOVIN) - governance power']='P15547',['governance incentives (GOVIN) - accounting quality']='P15548',['governance incentives (GOVIN) - system endorsement']='P15549',['governance incentives (GOVIN) - audit quality']='P15550',['governance incentives (GOVIN) - code of ethics']='P15551',['governance incentives (GOVIN) - disclosure regulation']='P15552',['Variables']={'P15553','P44034'},['Gender (men/women)']='P15554',['Mean age (years)']='P15555',['Pathology/diagnosis']='P15556',['Corticosteroit treatment - Corticosteroid (n)']='P15557',['Corticosteroit treatment - Noncorticosteroid (n)']='P15558',['Anastomotic leakage (AL) - Total AL (n)']='P15559',['Anastomotic leakage (AL) - corticosteroid (n)']='P15560',['Anastomotic leakage (AL) - noncorticosteroid (n)']='P15561',['Statistical analysis OR']='P15562',['95% CI']='P15563',['Type of anastomosis - Ileoileal']='P15564',['Type of anastomosis -Ileocolic']='P15565',['Type of anastomosis - Ileorectal']='P15566',['Type of anastomosis - Colorectal']='P15567',['Type of anastomosis - Colocolic']='P15568',['Type of anastomosis - Ileal pouch']='P15569',['Type of anastomosis - anal (IPAA)']='P15570',['Type of anastomosis -Handsewn']='P15571',['Type of anastomosis - Stapled']='P15572',['Surgery - Elective']='P15573',['Surgery - Emergency']='P15574',['Surgery - Right-sided colectomy']='P15575',['Surgery - Left-sided colectomy']='P15576',['Surgery - Anterior resection']='P15577',['Surgery - Colectomy']='P15578',['Surgery - Segmental']='P15579',['Product']={'P15580','P43149'},['Compound']='P15581',['Indication']='P15582',['Conc. (%)']='P15583',['Disease']='P15584',['Number of patients studied']='P15585',['N (%) with abnormal karyotype']='P15586',['N (% abnormal) with abnormal chromosome']='P15587',['N (% abnormal) with abnormal chromosome 1']='P15588',['N (%) with 2 isolated abnormalities']='P15589',['Type of abnormalities']='P15590',['SCM field']='P15591',['Critical success factors']='P15592',['Chronologic age in months']='P15593',['duration of the study in years']='P15594',['Cognitive tests Findings']='P15595',['Number of examinees']='P15596',['Chronologic age in months at the beginning of the study']='P15597',['Cognitive tests']='P15598',['Findings']='P15599',['The number of examinees']='P15600',['ADALINE/ Widrow- Hoff']='P15601',['Backpropagation']='P15602',['Perceptron']='P15603',['Radial Basis Function']='P15604',['Hopfield']='P15605',['Platform']='P15606',['Vendor']='P15607',['Comment']='P15608',['Fields']='P15609',['Artifacts']='P15610',['Invisibility']='P15611',['Payload Capacity']='P15612',['Robustness against statistical attacks']='P15613',['Tolerance to RS Steganalysis']='P15614',['Robustness against image manipulation']='P15615',['LSBreplacement style asymmetry']='P15616',['Utilization of edge areas']='P15617',['Species Order']='P15618',['Seawater']='P15619',['Analytical method']='P15620',['Freshwater']='P15621',['Brackish water']='P15622',['Follow-up time/ total observation time after MON n M/F']='P15623',['Patients']='P15624',['MS development']='P15625',['% who develop MS from MON (%)']='P15626',['Diagnostic criteria for MS (CDMS)']='P15627',['Method to detect OCBs']='P15628',['Odds ratio (95% CI)']='P15629',['Sensitivity (95% CI)']='P15630',['Specificity (95% CI)']='P15631',['[7]Region']='P15632',['Farmers']='P15633',['Total Social Welfare (million US dollar per year)']='P15634',['Social Welfare per adopted hectare (US dollars per hectare) []']='P15635',['Million adopted hectares (yearly averages) [adoption rate%]']='P15636',['Technology sellers']='P15637',['Consumer Welfare']='P15638',['Feasibility']='P15639',['Justification/ recommendation']='P15640',['inflammatory bowel disease']='P15641',['Intestinal operation']='P15642',['Recent in- hospital treatment/ operation']='P15643',['Recent antibiotic therapy']='P15644',['intermediate care unit/ Sepsis']='P15645',['Surgical procedure']='P15646',['Endoscopy']='P15647',['Treatment']={'P15648','P68101','P95004'},['Deceased']='P15649',['Max. reduction']='P15650',['Speed of no reduction']='P15651',['Distance to microphone, m']='P15652',['Method/ Technique(s)/(Database)']='P15653',['Result/Accuracy']='P15654',['Future work']='P15655',['Activity']='P15656',['Functional Data specification']='P15657',['Variables (1)']='P15658',['Economies of Scale']='P15659',['Other Measurements']='P15660',['Functional specification']='P15661',['Scale economies evaluated in the approximation point']='P15662',['Disclosures']='P15663',['Anonymistion approaches']='P15664',['Background information']='P15665',['Anonymistion algorithm/method']='P15666',['Definition of completeness']='P15667',['Measure of completeness']='P15668',['Data extraction tools']='P15669',['Reminder systems']='P15670',['Data repositories']='P15671',['For a single source only once']='P15672',['With a gold standard']='P15673',['Comparison between different tools, information systems or data task']='P15674',['Comparison among healthcare institutions']='P15675',['Before and after data quality intervention']='P15676',['During time intervals']='P15677',['Determinants']='P15678',['Name of Scheme']='P15679',['Parameters']='P15680',['Enviroment']='P15681',['Tools used for simulation']='P15682',['Tool Findings']='P15683',['First author']='P15684',['Type of test']='P15685',['Prevalence, %']='P15686',['Sample size (n)']='P15687',['Screening']='P15688',['Calculation of sample size']='P15689',['Species (developmental mode)']='P15690',['Body mass (g)']='P15691',['Egg mass (g)']='P15692',['Embryo assessment , presence only only']='P15693',['Embryo assessment, developmental stage stage']='P15694',['Incubation state/egg characteristic']='P15695',['Difference (% decrease) in shell thickness (egg region) in shell thickness (egg region)']='P15696',['test collection']='P15697',['has location']='P15698',['has beginning']='P15699',['has end']='P15700',['upper limit']={'P15701','wikidata:P5448'},['lower limit']={'P15702','wikidata:P5447'},['Instance Of Template']='InstanceOfTemplate',['Related Resource']='RelatedResource',['has annotated data']='P16000',['Relation1']='P16005',['Relation2']='P16006',['Usage']='P16007',['Feature-Of']='P16008',['Conjunction']='P16009',['Part-Of']='P16010',['Hyponym-Of']='P16011',['Compare']='P16012',['Overall']='P16013',['Method automation']='P16014',['Supports reference extraction']='P16015',['Knowledge graph creation']='P16016',['Input format']='P16017',['Export format']='P16018',['User interface']='P16019',['Summary']='P16020',['has URI']='P16021',['R0 estimates (average)']='P16022',['mean time interval between onset and hospital quarantine']='P16023',['mean incubation period']='P16024',['mean serial interval']='P16025',['study period name']='P16026',['data collection tool']='P16027',['measurement condition 1']='P16028',['measurement condition 2']='P16029',['common symptoms']='P16030',['mean of serial interval']='P16031',['standard deviation of serial interval']='P16032',['code']='P16033',['incubation SD']='P16034',['scenario']='P16036',['dataset description']='P16037',['R0 estimated duration']='P17000',['data source']={'P17001','P112020'},['scenario 1']='P17002',['scenario 2']='P17003',['Rc estimates (average)']='P17004',['dataset alias name']='P17005',['dataset revision']='P17006',['method description']='P17007',['hasMasterDataRepresentation']='P18000',['hasMappingtoSource']='P18001',['hasDocumentation']='P18002',['hasInteractionwithMasterData']='P18003',['hasStakeholders']='P18004',['hasRepresentationMasterData']='P18005',['Method']={'P18006','P27041','P34027','P34068','P34072','P34127','P35123','P37162','P37391','P37650','P41305','P44131','P45007','P51001','P54037','P55017','P110040','P201012'},['Has demo']='P18008',['has learning rate']='P18009',['has dropout']='P18010',['has hyperparameters']='P18011',['has activation function']='P18012',['has training epochs']='P18013',['has early stopping']='P18014',['has optimization']='P18015',['has scaling parameter']='P18016',['has comparisons']='P18017',['outperforms']='P18018',['Test']='P18019',['Training data']='P18021',['consists of']='P18023',['handles']='P18024',['represent']='P18025',['employ']='P18026',['Detects']='P18027',['treat']='P18028',['perform']={'P18029','P20132'},['construct']={'P18030','P175094'},['assign']='P18031',['update parameters']='P18032',['Try']='P18033',['on task']='P18035',['On evaluation dataset']='P18036',['F1']='P18037',['has Task']='P18038',['use']={'P18039','P20043','P20074','P20177'},['represented by']='P18040',['contains']={'P18041','contains','wikidata:P4330'},['adopt']='P18042',['inputs of decoding layer']='P18043',['Has word embedding']='P18044',['Has lstm units in encoding layer']='P18045',['has lstm units in decoding layer']='P18046',['Has bias parameter alpha']='P18047',['accuracy']='P18048',['Bleu Score']='P18049',['PubChem AID']='P18050',['Protein Target']='P18051',['status']='P18052',['Modiy Date']='P18053',['Deposit Date']='P18054',['has confirmatory assay']='P18056',['has assay format']='P18057',['Has participant']='P18058',['has role']='P18059',['is bioassay type of']='P18060',['has assay method']='P18061',['has detection method']='P18062',['has assay title']='P18063',['has temperature value']='P18064',['has incubation time value']='P18065',['has assay phase characteristic']='P18066',['has measured entity']='P18067',['has endpoint']='P18068',['has concentration unit']='P18069',['Has detection instrument']='P18070',['Has']='P18071',['status ']='P18072',['Test group size']='P18073',['Inter-code agreement']='P18074',['inter-coder agreement']='P18075',['annotated abstracts']='P18076',['Domains']='P18077',['For task']='P18078',['Chemical formula']='P18082',['Q']='P18083',['C']='P18084',['Image']='Image',['Swelling coefficient']='P18085',['Cohesive energy density']='P18086',['Uses dataset']='P18087',['Has way action performed on environment']='P18090',['Compares']='P18091',['paper:published_in']='P18092',['study_date']='P18093',['reported_cases']='P18094',['estimated_cases']='P18095',['has categories']='P18096',['organization']='P18097',['necessity']='P18098',['processing level']='P18099',['text data format']='P18100',['data resources']='P18101',['subtasks']='P18102',['level']='P18103',['strength']='P18104',['subjectivity']='P18105',['Template Component Validation Rule']='TemplateComponentValidationRule',['Template Label Format']='TemplateLabelFormat',['TemplateStrict']='TemplateStrict',['TemplateComponentOrder']='TemplateComponentOrder',['TemplateComponentOccurrenceMin']='TemplateComponentOccurrenceMin',['TemplateComponentOccurrenceMax']='TemplateComponentOccurrenceMax',['Lower confidence limit']='P19000',['Upper confidence limit']='P19001',['has study']='P19002',['Case fatality ratio (CFR)']='P20000',['Cumulative Incidence (CI)']='P20001',['Infection fatality ratio (IFR)']='P20002',['average estimated ratio between the actual number of individuals that have been infected and observed cases']='P20003',['data1 description']='P20004',['data1 source']='P20005',['data2 description']='P20006',['data2 source']='P20007',['data3 description']='P20008',['data3 source']='P20009',['study dates']='P20010',['Ascertainment Rate (q)']='P20011',['Number of confirmed cases']='P20012',['Intrinsic growth rate']='P20013',['Scaling of growth parameter']='P20014',['Number of deaths']='P20015',['Percentage of total cases']='P20016',['Scaling Types']='P20017',['Research Questions']='P20018',['Si precursor']='P20019',['contacting electrode']='P20020',['counter electrode']='P20021',['(pseudo)reference electrode']='P20022',['temperature']={'P20023','wikidata:P2076'},['process specification']='P20024',['total estimated cases']='P20025',['total confirmed cases']='P20026',['susceptible']='P20027',['infected']='P20028',['removed']='P20029',['achieves']='P20030',['on']={'P20031','P20048','P20119','P20186','P23036','P23074','P23084'},['learn']='P20032',['recognizes']='P20033',['framework']={'P20034','P62121'},['identify']='P20035',['apply']='P20036',['implement']='P20037',['consists of two modules']='P20038',['recognize']='P20039',['identifies']='P20040',['evaluate']='P20041',['evaluate on']='P20042',['with']={'P20044','P23037','P23066','P23079'},['used']={'P20046','P23039'},['conduct']='P20047',['explore']='P20049',['analyze']='P20050',['has sequencing type']='P20051',['has sequencing method']='P20052',['Estimated infectious period']='P20054',['Estimated mean latent']='P20055',['Estimated removed rate']='P20056',['Initial ratio of isolating susceptible individuals']='P20057',['reagent']='P20058',['has kit']='P20059',['has study design']='P20060',['Symptomatic persons (with visits at high risk areas) or contacts of infected persons']='P20061',['number of persons tested']='P20062',['persons with viral genome sequencing ']='P20063',['open invitation']='P20064',['random sample']='P20065',['number of persons with viral genome sequenced']='P20066',['Virus names in GISAID']='P20067',['EPI accession numbers']='P20068',['number of sequence variants']='P20069',['GISAID URL']='P20070',['Introduce']='P20071',['mask']='P20075',['replacing']='P20076',['replacement']='P20077',['involves']='P20078',['remove']='P20079',['sample']={'P20080','P46003'},['evaluate-on']='P20081',['follow']='P20082',['consists']='P20083',['Two sentence-level classification tasks']='P20084',['Three sentence-pair similarity tasks']='P20085',['Four natural language inference tasks']='P20086',['reimplemented']='P20087',['include']='P20088',['take']='P20089',['retain beta hyperparameters']='P20090',['has decoupled weight decay']='P20091',['keep']='P20092',['deviate from the optimization']='P20093',['uses a batch size']='P20094',['done on']='P20095',['took']='P20096',['Fine-tuning is implemented based on']='P20097',['has description']='P20098',['Per-Task Results']='P20099',['exceeds']='P20100',['improves considerably']='P20101',['substantially improves']='P20102',['yields smaller improvements']='P20103',['gains']='P20104',['develop']='P20105',['transforms']='P20106',['has basic components']='P20107',['are']='P20108',['composed of']='P20109',['consists of three types of layers']='P20110',['transform']='P20111',['train']={'P20112','P23076'},['integrate']='P20113',['has two tasks']='P20114',['introduces']='P20115',['surpasses']='P20116',['obtains']='P20117',['consider']='P20118',['for']={'P20120','P23038','P23060','P71210'},['to learn a function']='P20122',['investigate']='P20123',['show']='P20124',['present']='P20125',['experiment with']='P20126',['added']='P20127',['Augment']='P20128',['Maxpooling']='P20129',['concatenate']='P20130',['concatenation']='P20131',['Transformer Architecture']='P20133',['Weight Initialization']='P20134',['Post Transformer Layer']='P20135',['Training Epochs']='P20136',['Learning Rate (supervised)']='P20137',['Batch Size (supervised)']='P20138',['Learning Rate (few shot)']='P20139',['Batch Size (few shot)']='P20140',['adding positional information in the input']='P20141',['Aim']='P20142',['determine']='P20143',['Learning rate']='P20145',['Batch size']='P20146',['Number of steps']='P20147',['Relation representation']='P20148',['increase']='P20149',['very significant']='P20150',['Report']='P20151',['initializing']='P20152',['Use']='P20153',['deleted']={'P20154','P28004','P29014','P29015'},['Related Figure']={'P20155','RelatedFigure'},['Max sentence length']='P20157',['Adam learning rate']='P20158',['Number of epochs']='P20159',['Dropout rate']='P20160',['compare our method, R-BERT, against']='P20161',['beats']='P20162',['MACRO F1 value']='P20163',['create']='P20164',['discard']='P20165',['observe']='P20166',['demonstrates']='P20168',['repeatedly encodes']='P20170',['consisting of']='P20171',['via']='P20172',['to learn']='P20173',['Reuse']='P20174',['trained-on']='P20175',['after pre-training']='P20176',['rate']='P20178',['encodes']='P20179',['tokenize input text']='P20180',['creates']={'P20181','creates','P45095'},['iteratively merges']='P20182',['requires']='P20183',['add']='P20184',['bias']='P20185',['TACRED dataset']='P20187',['SemEval 2010 Task 8 dataset']='P20188',['establishing']='P20189',['according to external source (not stated in paper)']='P20190',['hasGenBank accession number']='P20191',['has nucleotide substitution']='P20192',['compared to']='P20193',['has NCBI Reference Sequence accession number']='P20194',['has company']='P21000',['has SARS-CoV-2 reference genome ']='P21001',['differs to the NC_045512 reference genome']='P21002',['pant presence or action']='P22000',['type of data for model development']='P22001',['ntry']='P22002',['limate zone (köppen-geiger)']='P22003',['intended ']='P22004',['type of building']='P22005',['n of months']='P22006',['predictors/devices']='P22007',['rule-based models: schedule/profile']='P22008',['rule-based models: other']='P22009',['stochastic opa models: general/generalized linear model ']='P22010',['stochastic opa models: generalized linear mixed models']='P22011',['stochastic opa models: linear mixed models']='P22012',['stochastic opa models: linear time series model']='P22013',['stochastic opa models: markov chain model']='P22014',['stochastic opa models: agent-based model']='P22015',['stochastic opa models: survival analysis']='P22016',['stochastic opa models: probit analysis ']='P22017',['stochastic opa models: gaussian process']='P22018',['stochastic opa models: bayesian network model']='P22019',['stochastic opa models: decision tree model']='P22020',['stochastic opa models: logit analysis']='P22021',['stochastic opa models: hierarchical clustering model']='P22022',['stochastic opa models: levy process']='P22023',['stochastic opa models: monte carlo method']='P22024',['stochastic opa models: poisson process']='P22025',['stochastic opa models: bernoulli process']='P22026',['stochastic opa models: hybrid model']='P22027',['stochastic opa models: entropic-probabilistic approach']='P22028',['stochastic opa models: other']='P22029',['data-driven models: agglomerative hierarchical clustering']='P22030',['data-driven models: random forest']='P22031',['data-driven models: support vector regression']='P22032',['data-driven models: support vector machine']='P22033',['data-driven models: gradient boosting ']='P22034',['data-driven models: regularized logistic regression']='P22035',['data-driven models: linear regression']='P22036',['data-driven models: decision tree']='P22037',['data-driven models: apriori']='P22038',['data-driven models: density estimation']='P22039',['data-driven models: k-means or k-medians']='P22040',['data-driven models: bootstrap aggregation']='P22041',['data-driven models: neural networks']='P22042',['data-driven models: multilayer perceptron']='P22043',['data-driven models: naive bayes ']='P22044',['data-driven models: nearest neighbour']='P22045',['data-driven models: gaussian mixture']='P22046',['data-driven models: hidden markov model']='P22047',['data-driven models: arma, arima, etc..']='P22048',['data-driven models: genetic algorithm']='P22050',['data-driven models: fuzzy logic']='P22051',['data-driven models: pedestrian dead reckoning']='P22052',['data-driven models: bayesian network model']='P22053',['optimization based on the defined objective function']='P22054',['data-driven models: other']='P22055',['ity']='P22056',['dimension of the sample (n. of rooms, buildings etc.)']='P22057',['start period (gg/mm/aaaa)']='P22058',['end period (gg/mm/aaaa)']='P22059',['software for consensus sequence generation']='P22060',['have nucleotide differences']='P23000',['has numerical value']='P23001',['has qualifier']='P23002',['participants (of which viral agents were sequenced)']='P23003',['has compnay']='P23004',['has international travel']='P23005',['has countries']='P23006',['Examples']='P23007',['Used to']='P23008',['Supports']='P23009',['nari']='P23010',['tudy dat']='P23011',['Total (Symptomatic cases-67% of all infected cases)']='P23012',['Proportion of population (Symptomatic cases-67% of all infected cases)']='P23013',['Peak week for incidence (Symptomatic cases-67% of all infected cases)']='P23014',['Peak month for incidence (Symptomatic cases-67% of all infected cases)']='P23015',['Number of sick people on the worst day of the simulated year (Symptomatic cases-67% of all infected cases)']='P23016',['Proportion of population sick on the worst day (Symptomatic cases-67% of all infected cases)']='P23017',['Total (Consultations-40% of symptomatic cases seek consultations, possibly mainly telephone/internet)']='P23018',['Proportion of population (Consultations-40% of symptomatic cases seek consultations, possibly mainly telephone/internet)']='P23019',['Total (Severe cases likely to require hospitalisation-1.0% of symptomatic cases)']='P23020',['Proportion of population (Severe cases likely to require hospitalisation-1.0% of symptomatic cases)']='P23021',['Number of people in hospital on the worst day-if capacity existed (Severe cases likely to require hospitalisation-1.0% of symptomatic cases)']='P23022',['Proportion of population in hospital on the worst day (Severe cases likely to require hospitalisation-1.0% of symptomatic cases)']='P23023',['Total (Cases likely to require ICU-25% of hospitalised cases)']='P23024',['People in ICU on the peak day-if capacities exist (Cases likely to require ICU-25% of hospitalised cases)']='P23025',['Total (Cases likely to require ventilation in ICU-50% of those in ICU)']='P23026',['Total Deaths']='P23027',['Proportion of population (Deaths)']='P23028',['cleaning algorithm']='P23029',['Biography']='P23030',['has software']='P23031',['has amino acid change']='P23032',['pre-training and fine-tuning']='P23033',['pre-trained']='P23035',['pre-trained for']='P23040',['pre-trained on']='P23041',['to']={'P23042','P23068'},['outperformed']='P23043',['in terms of']='P23044',['RE results']='P23045',['QA results']='P23046',['obtained']='P23047',['significantly outperformed']='P23048',['of']={'P23049','wikidata:P642'},['achieved']='P23050',['tune']='P23051',['Size of Word Embeddings']='P23052',['Number of Heads']='P23053',['Size of Hidden Layer']='P23054',['Size of Position Embeddings']='P23055',['Size of Attention Layer']='P23056',['Number of Latent Entity Types']='P23057',['Size of Mini-Batch']='P23058',['Initial Learning Rate']='P23059',['L2 Regularization Coefficient']='P23061',['F1-score']='P23063',['except']='P23064',['incorporate']='P23065',['mixture of']='P23067',['takes into account']='P23069',['optimize']='P23070',['higher NER and RC scores']='P23071',['than']='P23072',['higher EC and RC scores']='P23073',['provide']='P23075',['find']='P23077',['slightly better']='P23078',['to make']='P23080',['to remove']='P23081',['compare with']='P23082',['competitive sequence model']='P23083',['by']='P23085',['further outperforms']='P23086',['improves upon other dependency-based models']='P23087',['comparing C-GCN model with the GCN model']='P23088',['compared to the PA-LSTM']='P23089',['with-entity evaluation']='P23090',['incorporating off-path information']='P23091',['mask-entity evaluation']='P23092',['effect']='P23093',['when']='P23094',['when K = 1']='P23095',['outperforming']='P23096',['confirms our hypothesis']='P23097',['indicating']='P23098',['contextualizing']='P23099',['makes it']='P23100',['removing']='P23102',['Reviews']='P23103',['Number']='P23104',['Located in']='P23105',['Exists at']='P23106',['Infectious agent population']='P23107',['Basic reproducion number']='P23108',['Study design']='P23109',['Blinding of outcome assessment']='P23110',['Randomization']='P23111',['allocation concealment']='P23112',['Incomplete outcome data']='P23113',['Selective reporting']='P23114',['other sources of bias']='P23115',['Disease definitions (characterization)']='P23116',['Study groups']='P23117',['AED evaluated']='P23118',['2nd AED']='P23119',['3rd AED']='P23120',['4th AED']='P23121',['No of cats']='P23122',['Period of treatment or follow-up (months)']='P23123',['Prevalence of adverse effects']='P23124',['95% CI of cases that developed adverse effects']='P23125',['Body system affected and adverse effects']='P23126',['Most common adverse effects']='P23127',['Adverse effect type']='P23128',['Age of cats at seizure onset (years)']='P23129',['Dose of AED(s) (mg/ kg)']='P23130',['Serum levels of AED(s)']='P23131',['Pre-treatment SF (seizures/ month or year)']='P23132',['Post- treatment SF (seizures/ month or year)']='P23133',['No of cats that were failures']='P23134',['No of cats with >0% - <50% reduction in SF']='P23135',['No of cats with ≥50% - <100% reduction in SF']='P23136',['No of cats with 100% reduction in SF']='P23137',['95% CI of successfully treated cases']='P23138',['Type']='P23139',['Basic reproduction number']='P23140',['due to']='P23141',['Confidence interval (95%)']='P23142',['Estimated cases']='P23143',['Reported cases']='P23144',['Confidence interval']='P23145',['Range of values']='P23146',['Condition']='P23147',['Data validity condition']='P23148',['Duration']='P23149',['Participants\' characteristics (of which viral agents were sequenced)']='P23150',['patient characteristics']='P23151',['Depressive disorder']='P23152',['Age mean (SD)']='P23153',['% Female']='P23154',['% White']='P23155',['Setting']='P23156',['Recruitment']='P23157',['Most distal followup']='P23158',['Depression outcomes (sources)']='P23159',['Quality']='P23160',['Population/Procedure, Sample size']='P23161',['Intervention Group(s)']='P23162',['Interventionist ']='P23163',['Study design ']='P23164',['Construct ']='P23165',['Measurement, Rater ']='P23166',['Significant Results ']='P23167',['Nonsignificant Results ']='P23168',['N ']='P23169',['Clients ']='P23170',['Setting ']='P23171',['Intervention (protocol) ']='P23172',['Design ']='P23173',['Primary outcomes ']='P23174',['Qualitative findings ']='P23175',['Platform type']='P24000',['Scalability']='P24002',['Data I/O Rate']='P24003',['Apache Hadoop']='P24004',['Real-time Processing']='P24005',['Data Size Support']='P24006',['Iterative Task Support']='P24007',['Describes approach']='P24008',['Has definition']='P24009',['Uses metric']='P24010',['placed in']='P24011',['applicable in']='P24012',['has goal']={'P24013','wikidata:P3712'},['requirements']='P24014',['transient absorption:trapped holes']='P24015',['transient absorption:trapped electrons']='P24016',['conditions']='P24017',['Face features']='P25000',['Weaknesses']='P25001',['Problems']='P25002',['Solutions']='P25003',['Algorithm and Techniques']='P25004',['chemical doping method']='P25005',['doping elements']='P25006',['precursors']='P25007',['visible-light driven photocatalysis']='P25008',['Niobate']='P25009',['Co-Catalyst']='P25010',['Light Source']='P25011',['Sacrificial Reagent']='P25012',['H2 Formation Rate']='P25013',['Semiconductor']='P25017',['H2 Rate']='P25018',['Nb-Based Material']='P25019',['Main Products']='P25020',['Observed Rate']='P25021',['Case fatality rate']='P25022',['performs']='P25025',['yielding']='P25026',['with the exception']='P25027',['out-performed by']='P25028',['obtain']='P25029',['When paired with']='P25030',['performs on par with']='P25031',['adding']='P25032',['improves']='P25033',['significantly outperforms']='P25034',['including']={'P25035','wikidata:P1012'},['in']='P25036',['to jointly model']='P25037',['that only use']='P25038',['indicates']='P25039',['matches']='P25040',['that use']='P25041',['got']='P25042',['among']='P25043',['more effective than']='P25044',['without using']='P25045',['( > 2 % )']='P25046',['slightly outperforms']='P25047',['sets']='P25048',['by gaining']='P25049',['over']='P25050',['with respect to']='P25051',['achieve']='P25052',['relies on']='P25053',['achieving']='P25054',['get']='P25055',['already outperforms']='P25056',['demonstrating the advantage of']='P25057',['achieves slightly better performance than']='P25058',['Data used']='P25059',['Language/domain']='P25060',['NEs found']='P25061',['Technique used']='P25062',['Dataset used']='P25063',['Evaluation results']='P25064',['Has subfields']='P25065',['Gatherable information']='P25066',['Concept']='P25067',['Reviews method']='P25068',['Authors recommend']='P25069',['Answer']='P25070',['Has characteristics']='P25071',['Attributes']='P25072',['Retinal Dissease']='P25073',['Learning approach']='P25074',['Sub Problem']='subProblem',['total cases worldwide']='P26001',['Global Mean Sea level Rise Projection']='P26002',['has likely range']='P26003',['has base line']='P26004',['has lower limit for likely range']='P26005',['has upper limit for likely range']='P26006',['has start of period']='P26007',['has end of period']='P26008',['climate scenario']='P26009',['Has prognostic ocean variable']='P26010',['has ocean result']='P26011',['Ocean model family']='P26012',['Ocean vertical physics']='P26013',['has horizontal ocean model resolution']='P26014',['Has ocean model documantation']='P26015',['Atmosphere Model Basic Approximations']='P26016',['Dynamical core of atmosphere model ']='P26017',['has atmosphere model name']='P26018',['has results in atmosphere']='P26019',['Atmosphere model family']='P26020',['Has sea ice model name']='P26021',['Has results for sea ice']='P26022',['Has land surface model name']='P26023',['Has prognostic land surface model variable']='P26024',['has land surface model documentation']='P26025',['Has aerosol model documentation']='P26026',['Has aerosol model scheme']='P26027',['Has prognostic sea ice model variable']='P26028',['Has atmosphere model documentation']='P26029',['Has horizontal atmosphere model resolution']='P26030',['Has results in the ocean']='P26031',['Has prognostic atmosphere model variable']='P26032',['Has atmosphere model version']='P26033',['Has ocean model name']='P26034',['Has horizontal ocean model discretisation']='P26035',['Has ocean model version']='P26036',['Has sea ice model documentation']='P26037',['Has sea ice model version']='P26038',['Has horizontal atmosphere model descretisation']='P26039',['Land surface model basic approximations ']='P26040',['Ocean model basic approximations']='P26041',['Sea ice model basic approximations']='P26042',['Atmospheric Chemistry Basic Approximations']='P26043',['has prognostic atmospheric chemistry variable']='P26044',['has C parameter']='P26045',['Has gamma']='P26046',['Has kernel function']='P26047',['Has cost factor']='P26048',['Estimated_cases_with']='P26049',['has part ']='P27000',['has part ']='P27001',['Libraries']='P27002',['Evacuation Strategies']='P27003',['section']='P27004',['Study category']='P27005',['Experimental details']='P27006',['Variables that resulted in significant effects']='P27007',['Statistics used']='P27008',['Variables that resulted in non-significant effects']='P27009',['Effect size']='P27010',['dependent variable']={'P27011','P119085'},['Has independent variable']='P27012',['Has number of votes']='P27013',['Has participants']='P27014',['Has buildings']='P27015',['Has offices']='P27016',['Length']='P27017',['Days']='P27018',['Study type']='P27019',['Type of buildings']='P27020',['Building systems']='P27021',['Study location']='P27022',['% of female']='P27023',['Number of participants']='P27024',['Number of buildings']='P27025',['Number of offices']='P27026',['HVAC type']='P27027',['Lighting type']='P27028',['Region of data collection']='P27029',['Continent']='P27030',['Estimated value']='P27031',['Observed value']='P27032',['Growth rate']='P27033',['Organism']='P27034',['Type of Laser']='P27035',['Wavelength (λex)']='P27036',['RDF dump']='P27043',['Pulse duration']='P27044',['Energy']={'P27045','P41277'},['Research Infrastructure']='P27046',['API support']='P27047',['Books']='P27048',['Chapters']='P27049',['Journals']='P27050',['Patents']='P27051',['Persons']='P27052',['Conferences']='P27053',['Institutioans']='P27054',['Publications']='P27055',['Topics']='P27056',['Energy Device']='P27057',['Radiant energy']='P27058',['Radiant exposure']='P27059',['ID']='P27060',['compare contribution']='compareContribution',['has previous version']='hasPreviousVersion',['has subject']='hasSubject',['has content']='hasContent',['Radiant energy input']='P28000',['problem statement']='P28001',['day']='P28002',['month']='P28003',['has layer']='P28005',['responsible for']='P28006',['has Wikipedia description']='P28007',['Total Cases']='P28008',['has capabilities']='P29004',['PubChemAID']='P29005',['has assay footprint']='P29006',['assay measurement type']='P29007',['uses detection instrument']='P29008',['has mode of action']='P29009',['stand']='P29010',['Measure of species similarity']='P29011',['Measure of invasion success']='P29012',['Has hypothesis']='P29013',['R51465']='P29016',['R51467']='P29017',['R51469']='P29018',['R51471']='P29019',['R51473']='P29020',['R51475']='P29021',['R51477']='P29022',['R51479']='P29023',['R51481']='P29024',['has roles']='P29025',['R51527']='P29042',['R51529']='P29043',['R51531']='P29044',['R51533']='P29045',['R51535']='P29046',['R51537']='P29047',['R51539']='P29048',['R51541']='P29049',['paper:puplication_year']='P30000',['hypothesis']={'P30001','P95001'},['stand of hypothesis']='P30002',['number of plant species']='P30003',['type of experiment']='P30004',['Produced by']='P30005',['Has participating device']='P30006',['Has participating person']='P30007',['Has gaseous sample input']='P30008',['Has solution sample input']='P30009',['Has solid sample input']='P30010',['Has radiant energy input']='P30011',['Has output']='P30012',['Has component type']='P30013',['Has specified volume']='P30014',['Has specified mass']='P30015',['pH']={'P30016','P44006'},['Role']='P30017',['Particle size range']='P30018',['Wavelength of maximum absorption']='P30019',['Duration of absorption process']='P30020',['Half time for charge recombination (t1/2)']='P30021',['Time duration']='P30022',['Related Comparisons']='P30023',['has params']='P30024',['uses pipeline']='P30025',['hasMetaVisualization']='P30026',['hasMetaVisualizationDefinition']='P30027',['appraoch']='P31000',['paper:Study date']='P31001',['Measure of species relationship']='P31002',['Non-plant species ']={'P31003','P31007','P31008','P31009','P31010','P31011','P31012','P31013','P31014','P31015','P31016','P31017','P31018','P31019','P31020','P31021','P31022'},['Number of non-plant species']='P31004',['Habitat']='P31005',['WOS search or Cited references']='P31006',['Investigated species']='P31023',['Number of species']='P31024',[' Phenotypic plasticity form']='P32000',['Specific traits']='P32001',['Species name']='P32002',['Measure of disturbance']='P32117',['Type of disturbance']='P32118',['Direct anthropogenic dist.?']='P32119',['Global and annual mean surface air temperature']='P32121',['Measure of propagule pressure']='P32122',['Has TCR result']='P32123',['Has ECS result']='P32124',['Format']='P33001',['Features/improvement']='P33002',['Total Metadata entries']='P33003',['References']={'P33004','P203108'},['Measure of resistance/susceptibility']='P33006',['Type of interaction']='P33008',['Type of effect description']='P33009',['Ecological Level of evidence']='P33010',['Outcome of interaction']='P33011',['Transition in the invasion process']='P33012',['Observed proportion of species making the transition']='P33013',['Measure of native biodiversity']='P33014',['New data sources']='P33015',['Data Storage']='P33016',['Data Access']='P33017',['Offer functions']='P33018',['Developement']='P33019',['Recent Developement']='P33020',['Important aspects to consider']='P33021',['The size of data that is being considered for processing is probably the most important factor. If the data can fit into the system memory, then clusters are usually not required and the entire data can be processed on a single machine. The platforms such as GPU, Multicore CPUs etc. can be used to speed up the data processing in this case. If the data does not fit into the system memory, then one has to look at other cluster options such as Hadoop, Spark etc. Again, Hadoop and Spark clusters can handle large amount of data but Hadoop has well developed tools and frameworks although it is slower for iterative tasks. The user has to decide if he needs to use off-the-shelf tools which are available for Hadoop or if he wants to optimize the cluster performance in which case Spark is more appropriate']='P33022',['testun']='P33023',['Relevance']='P33024',['has_method']='P33025',['has_value']='P33026',[' has_venue']={'P33027','P33029'},['has_doi']='P33028',[' HAS_RESULTS']='P33030',['Sub-hypothesis']='P33036',['Which species are compared?']='P33037',['Indicator for enemy release']='P33038',['Release of which kind of enemies?']='P33039',['paper:DOI']='P33040',['R58162']='P33041',['R58164']='P33042',['R58166']='P33043',['R58168']='P33044',['R58170']='P33045',['R58172']='P33046',['R58174']='P33047',['R58176']='P33048',['R58178']='P33049',['R58180']='P33050',['R59704']='P33051',['R59706']='P33052',['R59708']='P33053',['R59710']='P33054',['R59712']='P33055',['R59714']='P33056',['R59716']='P33057',['R59718']='P33058',['R59720']='P33059',['R59722']='P33060',['R59724']='P33061',['R59726']='P33062',['R59759']='P33063',['R59761']='P33064',['R59763']='P33065',['R59765']='P33066',['R59767']='P33067',['R59769']='P33068',['R59771']='P33069',['R59773']='P33070',['R59775']='P33071',['R59777']='P33072',['R59779']='P33073',['R59781']='P33074',['R59833']='P33075',['R59835']='P33076',['R59837']='P33077',['R59839']='P33078',['R59841']='P33079',['R59843']='P33080',['R59845']='P33081',['R59847']='P33082',['R59849']='P33083',['R59851']='P33084',['R59853']='P33085',['R59855']='P33086',['R59857']='P33087',['R59859']='P33088',['R59861']='P33089',['R59922']='P33090',['R59924']='P33091',['R59926']='P33092',['R59928']='P33093',['R59930']='P33094',['R59932']='P33095',['R59934']='P33096',['R59936']='P33097',['R59938']='P33098',['R59940']='P33099',['R59942']='P33100',['R59944']='P33101',['R59996']='P33102',['R59998']='P33103',['R60000']='P33104',['R60002']='P33105',['R60004']='P33106',['R60006']='P33107',['R60008']='P33108',['R60010']='P33109',['R60012']='P33110',['R60014']='P33111',['R60016']='P33112',['R60018']='P33113',['R60079']='P33114',['R60081']='P33115',['R60083']='P33116',['R60085']='P33117',['R60087']='P33118',['R60089']='P33119',['R60091']='P33120',['R60093']='P33121',['R60095']='P33122',['R60097']='P33123',['R60099']='P33124',['R60101']='P33125',['R60103']='P33126',['R60105']='P33127',['R60107']='P33128',['R60168']='P33129',['R60170']='P33130',['R60172']='P33131',['R60174']='P33132',['R60176']='P33133',['R60178']='P33134',['R60180']='P33135',['R60182']='P33136',['R60184']='P33137',['R60186']='P33138',['R60188']='P33139',['R60190']='P33140',['R63786']='P33141',['R63788']='P33142',['R63790']='P33143',['R63792']='P33144',['R63794']='P33145',['R63796']='P33146',['R63798']='P33147',['R63800']='P33148',['R63802']='P33149',['R63804']='P33150',['R63806']='P33151',['R63808']='P33152',['Scaling type']='P33153',['Data I/O Performance']='P33154',['Data size supported ']='P33155',['Relevant data']='P34000',['Has trend']='P34001',['Becoming a requirement for']='P34002',['Knowledge derived from']='P34003',['Important for']='P34004',['Reason']='P34005',['paper: authors']='P34006',['has_host']='P34014',['larval habit inside or outside of host']='P34015',['tissue consumed by larvae']='P34016',['state of host plant tissue at moment of consumption']='P34017',['Foundation for integration of']='P34018',['Potentially useful techniques']='P34019',['Stakeholders']='P34020',['Infection']='P34021',['CI Tech']='P34022',['NPV']='P34023',['has lysine catabolic pathway type']={'P34032','P34033','P34034','P34035','P34036'},['has toxin']='P34037',['has target']='P34038',['Gesellschaft zur Zeit der Konzeptentwicklung']='P34039',['Staatsform zur Zeit der Konzeptentwicklung']='P34040',['Soziale Arbeit als Institution']='P34041',['gesellschaftliche Funktion Sozialer Arbeit']='P34042',['Auftraggeber']='P34043',['Funktion Sozialer Arbeit']='P34044',['Adressat*innen']='P34045',['Perspektive/Ziel Sozialer Arbeit']='P34046',['Vergesellschaftungsprozess']='P34047',['Ressourcen']='P34048',['Definitionsmacht']='P34049',['Macht von - Macht über']='P34050',['Repräsentationsform']='P34051',['Lebenslage Adressat*innen']='P34052',['Lebenslage Sozialarbeiter*innen']='P34053',['angestrebte Macht der Adressat*innen']='P34054',['Ebene der Verhandlung']='P34055',['Bewegungshintergrund']='P34056',['Konzepte der Jugendarbeit']='P34057',['Doppeltes Mandat der Jugendarbeit']='P34058',['number of papers']='P34059',['Number of concepts']='P34060',['Text coverage']='P34061',['Concept types']='P34062',['Dataset name']='P34063',['number concepts']='P34064',['Payment Scheme']={'P34073','P34074'},['Knowledge Graph Type']='P34075',['Knowledge Graph Semantics']='P34076',['Knowledge Graph Selection']='P34077',['Reuse Of Knowledge Graph']='P34078',['Number Of Knowledge Graphs']='P34079',['Machine Learning Input']='P34080',['Machine Learning Method']='P34081',['Machine Learning Task']='P34082',['Machine Learning Model Integration']='P34083',['Explanation Form']='P34084',['Explanation Type']='P34085',['Explanation Interpretability']='P34086',['do not incorporate']='P34087',['above it']='P34088',['constructs and labels']='P34089',['To capture']='P34090',['have']='P34091',['used in']='P34092',['dimensions']='P34093',['updating']='P34094',['gradient clipping']='P34095',['RUIHUI MU']='P34096',['about species']='P34098',['Has information processing paradigm']='P34099',['on research field']='P34100',['analysis aspect']='P34101',['Has visualization']='hasVisualization',['Has Kaggle Competition']='P34102',['Has benchmark']='P34103',['Has lower limit for 95% onfidence interval ']={'P34104','P34105','P34106'},['Has upper limit for 95% onfidence interval']='P34107',['Has lower limit for 95% confidence interval ']='P34109',['Has upper limit for 95% confidence interval']='P34110',['Performance:Precision']='P34111',['Performance:Sensitivity']='P34112',['Performance:Specificity']='P34113',['Performance:NPV']='P34114',['Computational intelligence technologie']='P34115',['AUROC']='P34116',['AUCPR']='P34117',['PPV']='P34118',['C Statistic']='P34119',['Goodness of fit: Loss']='P34120',['Chi-Square']='P34121',['NDCG']='P34122',['R^2']='P34123',['R70803']='P34128',['R70805']='P34129',['R70807']='P34130',['R70809']='P34131',['R70811']='P34132',['R70821']='P34133',['R70823']='P34134',['R70825']='P34135',['DBMS']='P34136',['Content']='P34137',['Has web application']='P34138',['Query language']='P34139',['Results format']='P34140',['Has endpoint']={'P34373','P34542'},['Has incubation time value']='P34374',['has time unit']='P34554',['has manufacturer']='P34556',['has concentration throughput']='P34558',['has repetition throughput']='P34560',['has cell line']='P34563',['has preparation method']='P34564',['DNA construct']='P34565',['has bioassay type']='P34566',['has percent response']='P34567',['has response unit']='P34568',['has purity value']='P34574',['has inducer']='P34576',['has alternate cell line assay']='P34583',['has lead optimization assay']='P34584',['primary cell']='P34586',['has temperature unit']='P34587',['Details']='P34589',['Entity type']='P34590',['provides API']='P34591',['uses identifier system']='P34592',['Mapping to other identifiers']='P34593',['Number of entities']='P34594',['Data dump']='P34595',['Metadata schema']='P34596',['provided services']='P34597',['Used by']='P34598',['Sentence Classifier']='P35000',['Handles imbalanced sentences']='P35001',['Augments with silver-labeled test data']='P35002',['Scientific Terms and Relations Extraction']='P35003',['hazard ratio']='P35004',['Triples Extraction']='P35005',['Additional Component']='P35006',['Category 1']='P35007',['Category 2']='P35008',['data proportion']='P35009',['Category 3']='P35010',['Category 4']='P35011',['Category 5']='P35012',['Category 6']='P35013',['End-to-end system performance']='P35014',['Only Phrase Extraction Performance']='P35015',['Only Phrases Extraction Performance']='P35016',['Semi-pipelined Triples']='P35017',['Semi-pipelined Triples Performance']='P35018',['Only Triples Extraction Performance']='P35019',['Pipelined Phrases Extraction Performance']='P35020',['Pipelined Triples Extraction Performance']='P35021',['Only Phrases Extraction Performance %F-score']='P35022',['Only Phrases Extraction Performance F-score']='P35023',['MVC-Based technology']='P35024',['SOA Integration technology']='P35025',['Real time support']='P35026',['Heterogeneous Data Sources']='P35027',['Dynamic UI']='P35028',['Semi-pipelined Triples Performance F-score']='P35029',['Only Triples Extraction Performance F-score']='P35030',['End-to-end System Performance F-score']='P35031',['Pipelined Phrases Extraction Performance F-score']='P35032',['Pipelined Triples Extraction Performance F-score']='P35033',['Has ORKG Paper']='P35034',['Team Name']='P35035',['Concentration']='P35036',['days_in_vitro']='P35037',['total_cochlear_length']='P35038',['Total_cochlear_area']='P35039',['Prox1_area']='P35040',['Sox2_area']='P35041',['Medial_to_lateral_area_ratio']='P35042',['OHC_count']='P35043',['IHC_count']='P35044',['Economy']='P35045',['Education']='P35046',['Environment and climate change']='P35047',['Finance']='P35048',['Governance']='P35049',['Health']='P35050',['Housing']='P35051',['Population and social conditions']='P35052',['Recreation']='P35053',['Safty']='P35054',['Solid waste']='P35055',['Sport and culture']='P35056',['Telecommunication']='P35057',['Transportation']='P35058',['Urban/local agriculture and food security']='P35059',['Urban planning']='P35060',['Wastewater']='P35061',['Water']='P35062',['Planet']='P35063',['Prosperity']='P35064',['Number of indicators']='P35065',['Society and culture']='P35066',['People']='P35067',['Element of the City Model Canvas']='P35068',['visualizes information of']='P35069',['includes a concept']='P35070',['has topic']='P35071',['Author(s) ID']='P35074',['Source title']='P35075',['Volume']='P35076',['Issue']='P35077',['Page start']='P35078',['Page end']='P35079',['Cited by']='P35080',['Author Keywords']='P35081',['Publication Stage']='P35082',['Open Access']='P35083',['EID']='P35084',['Index Keywords']='P35085',['Art. No.']='P35086',['Page count']='P35087',['Has research method']='P35088',['Human values']='P35089',['Human values or emotions']='P35090',['Concepts']='P35093',['Has graphical user interface']='P35094',['Has purpose']='P35095',['Supports tasks']='P35096',['Is based on']='P35097',['Provides funtionality']='P35098',['is supported by']='P35099',['Number of surveyed papers']='P35100',['has research question']='P35101',['has sample']='P35102',['has results']='P35103',['has answer to research question']='P35104',['has hypotheses']='P35105',['Null hypothesis']='P35106',['Alternative hypothesis']='P35107',['Treatments']='P35108',['has dependent variables']='P35109',['has subject selection method']='P35110',['has subject selction methods']='P35111',['has rewards']='P35112',['scale type']='P35113',['Normal distribution']='P35114',['Tests']='P35115',['number of groups']='P35116',['Significance level']='P35117',['Application field']='P35118',['Number of ontologies referenced']='P35119',['scientific papers mentionned describing the ontology']='P35120',['Has experimental procedure']='P35125',['Group']='P35126',['Background']='P35127',['Shapiro-Wilk results']='P35128',['W-value']='P35129',['is significant']='P35130',['Interpretation']='P35131',['t-value']='P35132',['Statistical tests']='P35133',['has descriptive statistics']='P35135',['HQS']='P35136',['Sentences Extraction Performance F-score']='P35137',['Associated Data']='P35138',['Inferential statistic results']='P35139',['Descriptive statistic results']='P35140',['Group 1 using ReqVidA']='P35141',['Group 2 using text editor']='P35142',['U-value']='P35143',['Group 1 using the vision video']='P35144',['Group 2 using the image set']='P35145',['Software features']='P35146',['Compound of interest']='P35147',['Vegetable source']='P35148',['Electrode design']='P35149',['Lowest Electric field (V/cm)']='P35150',['Highest Electric field (V/cm)']='P35151',['Lowest number of pulses']='P35152',['Highest number of pulses']='P35153',['Pulse width (ms)']='P35154',['Treatment temperature (°C)']='P35155',['Best treatment electric field (V/cm)']='P35156',['Best treatment specific energy (kJ/kg)']='P35157',['Antioxidant activity increase (%)']='P35158',['Bioactive compound increase (%)']='P35159',['Ionic liquids']='P35160',['Absorption cycles']='P35161',['Binary systems']='P35162',[' Coefficient of performance COP']='P35163',['Thermodynamic properties']='P35164',['The cycle components temperature']='P35165',['Circulation ratio f']='P35166',['prevention strategies']={'P35168','P35169'},['has section']='HasSection',['has link']='HasLink',['has paper']='HasPaper',['Graph top-level nodes']='P35173',['Training data triples proportion']='P35175',['Test data triples proportion']='P35176',['Has repository']='P35177',['Github']='P35178',['Repository']='P35179',['confidence interval (99%)']='P35180',['Online competition']='P35181',['Year of study']='P35182',['Published']='P35183',['Type of sample']='P35184',['Type of essential oil']='P35185',['Molecular Weight of Chitosan']='P35186',['storage temperature']='P35187',['Female']='P35188',['Females']='P35189',['Males']='P35190',['Elderly']='P35191',['Ant Colony Optimisation algorithms']='P35192',[' SPARQL SELECT queries ']='P35193',['Lead compound']='P35194',['Type of natural additive']='P35195',['Dietary Pattern']='P35196',['Prinicpal component Analysis']='P35197',['Malaysia']='P35198',['Obesity']='P35199',['Age group']='P35200',['Dietary patterns ']='P35201',['Dietary pattern derivation methods']='P35202',['Food groups associated with obesity']='P35203',['Dietary pattern asscoiated with obesity']='P35204',['Time frame']='P35205',['RO estimate']='P35206',['95% confidence interval lower limit']='P35207',['95% confidence inteval upper limit']='P35208',['Methods of Characterizations used in Study']='P35209',['Materials used in Study for Composite Fabrication']='P35210',['Electroactive Monomer Basis of Fabricated Composite Used in Study']='P35211',['Optoelectrochemical Studies']='P35212',['Type of Polymerization']='P35213',['Has example']='P35214',['Subtask 1']='P35215',['Subtask 2']='P35216',['Has evaluation metrics']='P35217',['Subtask 3']='P35218',['Subtask 2 Part 1']='P35219',['Subtask 2 Part 2']='P35220',['Data annotation granularities']='P35221',['Training data count']='P35222',['has count']='P35223',['Test data count']='P35224',['Organizational factors influencing evidence-based decision-making']='P35225',['Environmental factors influencing evidence-based decision-making']='P35226',['Individual factors influencing evidence-based decision-making']='P35227',['Nigeria']='P35228',['Has preprocessing steps']='P35229',['Has word features']='P36000',['Has features']='P36001',['Total teams']='P36002',['Average length of different types of sentences of Training set']='P36003',['Average length of different types of sentences of Dev set']='P36004',['Average length of different types of sentences of Test set']='P36005',['RE activties']='P36006',['Perspective']='P36007',['Binding Energy']='P36008',['Deformation Energy']='P36009',['Potassium Binding Energy']='P36010',['Potassium/Sodium Binding Energy difference']='P36011',['factors influencing bullying victimization']='P36012',['statistical significance']='P36013',['calculates']='P36014',['Pearson Uncentered Correlation']='P36015',['harmonic mean of Spearman and Pearson correlation between predicted scores and average manual scores']='P36016',['Visitor effect']='P36017',['alternative label']='P36018',['Data annotations']='P36022',['Direct-defines']='P36023',['Total submissions']='P36024',['Submissions per subtask']='P36025',['Languages']='P36026',['Total members']='P36027',['Best team']='P36028',['Baseline']='P36029',['Corpora']='P36030',['spans']='P36031',['spanning']='P36032',['measured']='P36033',['Evaluation tracks']='P36034',['Participated in']='P36035',['Performance rank']='P36036',['Average accuracy']='P36038',['Average Spearman\'s rank correlation']='P36039',['Code repositories']='P36041',['Average Score']='P36042',['Track name']='P36043',['Best teams']='P36044',['Participating teams']='P36045',['Participating systems']='P36046',['Has heuristic solution method']='P36047',['Distributional word vectors']='P36048',['Problem type']='P36049',['Best systems']='P36050',['Animal model']='P36051',['Local search algorithm Variable Neighbourhood Search']='P36052',['Local Search Algorithm']='P36053',['Problem Classification']='P36055',['RE activities with crowd involvement']='P36056',['Utilities in CrowdRE']='P36057',['70.3']='P36058',['Framework for static optimization of Basic Graph Patterns']={'P36059','P36063','P36067','P36071'},['a set of heuristics for the selectivity estimation of joined triple patterns']={'P36060','P36064','P36068','P36072'},[' a proposal for summary statistics of RDF data']={'P36061','P36065','P36069','P36073'},['A query performance evaluation']={'P36062','P36066','P36070','P36074'},['Machine learning feature']='P36075',['F(Beta) measure']='P36076',['Beta-T value']='P36077',['Best F1']='P36078',['Best Accuracy']='P36079',['Best Spearman Correlation']='P36080',['Approach name']='P36081',['Means of evaluation']='P36082',['Dataset statistics']='P36083',['Dates']='P36084',['Corpus genres']='P36085',['Corpus sources']='P36086',['Corpus statistics']='P36087',['Examined (sub-)group']='P36088',['Indicator for well-being']='P36089',['Operationalisation of dependent variable']='P36090',['Location index']='P36091',['Hoover Coefficient of Concentration']='P36092',['Sustainability Sub-Index']='P36093',['Compared time before the COVID-19 pandemic']='P36094',['Elicited information']='P36095',['Used models']='P36096',['Incentive/Motivation']='P36097',['Performed by']='P36098',['Media/Channel']='P36099',['Run-time purpose']='P36100',['Identification method']='P36101',['Mean value well-being pre-Corona ']='P36102',['Well-being: mean value pre-Corona ']='P36103',['Well-being: mean value during lockdown']='P36104',['Well-being: mean value before COVID-19 pandemic']='P36105',['Well-being: mean value during COVID-19 pandemic']='P36106',['Control variables']='P36107',['Equipment used']='P37000',['Number of isolated compounds']='P37001',['Bioassays conducted']='P37002',['Standard drugs used']='P37003',['location of study']='P37004',['plant material']='P37005',['Has end']='P37006',['Discussion']='P37010',['Result and Conclusion']={'P37011','P37013'},['Implication']={'P37012','P37014'},['Abstract']='P37015',['Operating System']='P37016',['RAM']='P37018',['has abbreviation']='P37019',['DBSPB']='P37020',['LUBM']='P37021',['SNIB']='P37022',['YAGO2']='P37023',['SP2B']='P37024',['CPU Clock rate']='P37026',['covalent linking']='P37027',['Exact reaction']='P37028',['Classification category']='P37029',['Environmental dimension']='P37030',['Social Dimension']='P37031',['has benchmark']={'hasBenchmark','HAS_BENCHMARK'},['has model']='hasModel',['Has evaluation']='HasEvaluation',['Economic Dimension']='P37032',['Internal identifier']='P37033',['Effect size - explanation']='P37034',['Number of RDF triples ']='P37035',['Number of RDF Datasets']='P37036',['Supports owl:sameAs Inference']='P37037',['has_kind_of_messages']='P37038',['has_kind_of_appeal']='P37039',['https://doi.org/10.1186/s12544-021-00469-3']='P37040',['Study Area']='P37041',['Spectral features']='P37042',['No written documentation on the phytochemicals, median lethal dose, anti-inflammatory, and analgesic properties of the ethanolic extract of Eryngium foetidum leaves in experimental animals']='P37043',['Little or no information on the use of Cucurbita pepo to management anaemia']='P37044',['Document regarding haematological studies of Sesamum indicum leaves are scanty; hence the present study was evaluated']='P37045',['Reports regarding haematological studies of Uvaria chamae leaves are scanty; hence the present study was evaluated']='P37046',['Information on the effects of ethanolic extract of Musa acuminata on haemopoietic parameters on the experimental rats are not properly documented']='P37047',['Validation of the anti-hyperglycemic effect of Dioscorea bulbifera cherished by many Nigerians as a delicacy in food accompliments']='P37048',['Research on bioaccumulation potentials of three (3) varieties of Manihot esculenta with regard to the six (6) heavy metals studied, using their leaf tissues are challenging']='P37049',['Investigation of organic and inorganic amendments of soil properties on the growth and yield components of two varieties of okra in University of Uyo Botanical Garden was not properly recorded']='P37050',['The knowledge of S. media leaves in traditional medicine practitioners of its efficacy in treating anaemia is lacking']='P37051',['Treatment of Diabetes by traditional medicine practitioners using Musa acuminata in Akwa Ibom State is not well documented']='P37052',['Information concerning drought stress in Vigna unguiculata during the growing stage in University of Uyo are lacking']='P37053',['The anti-hyperglycemic effect of Pleurotus ostreatus mushroom cherished by many Nigerians as a delicacy in soup condiment is not well recorded in Akwa Ibom State']='P37054',['The impacts of spent engine oil on the growth performance of Okra and remediation effect of organic (poultry droppings) nutrient supplements are not properly documented in Akwa Ibom State.']='P37055',['Nephrolepis biserrata are used by Akwa Ibom State indigenes to cure inflammation and pains and are not well documented']='P37056',['Anti-hyperglycaemic effect of Terminalia ivorensis leaf by traditional medicine practitioners in Akwa Ibom State are not well reported.']='P37057',['No data documentation on ethanolic root extract of Baphia nitida in the treatment of anaemia in Akwa Ibom State']='P37058',['The nutritional and medicinal values of Sterculia tragacantha and Sesamum indicum are not well recorded in Akwa Ibom State.']='P37059',['Information regarding the bioactive components of Luffa aegyptiaca Leaf, Stem and Flowers are not properly documented']='P37060',['Has prognostic sea ice variable']='P37061',['Has prognostic land ice model variable']='P37062',['Metamodel strategy and structure']='P37063',['Metamodel business network']='P37064',['Metamodel operations']='P37065',['Metamodel revenue model & performance']='P37066',['Integration with other architectures']='P37067',['Metamodel maturity']='P37068',['Methodology development of BA model']='P37069',['Methodology management BA initiatives']='P37070',['Methodology structured procedure model']='P37071',['Methodology use case scenarios']='P37072',['Methodology best practices / reference models']='P37073',['Methodology maturity']='P37074',['Availible tools']='P37075',['Available tools']='P37076',['is abbreviation of']={'P37077','P37079'},['has license']={'P37078','P37080','P190010'},['Deepest Spectral feature']='P37081',['Atmospheric correction model']='P37082',['Geometric Correction']='P37083',['Data Dimensionality Reduction Methods']='P37084',['End Member Extraction Techniques']='P37085',['Priori Knowledge of Study Area']='P37086',['Spectral Mapping Technique']='P37087',['Ferrous (Iron) Band Position']='P37088',['Mineral Map Available']='P37089',['Minerals Mapped/ Identified']='P37090',['Comparisons']='P37091',['Software Used']='P37092',['Band Parameters']='P37093',['Removal of Bad Bands and De-striping']='P37094',['Deepest Spectral feature (µm)']='P37095',['Deepest Spectral feature (�m)']='P37097',['Ferrous (Iron) Band Position (�m)']='P37098',['Deepest Spectral feature (nm)']='P37099',['Ferrous (Iron) Band Position (nm)']='P37100',['Study Area ']='P37101',['Mineralogy']='P37102',['De-striping']='P37103',['Band Band Removal']='P37104',['Bad Bands Removal']='P37105',['Citation']='P37106',['Citations']='P37107',['Phytochemical properties and antidiabetic effect of the Newbouldia laevis ethanolic leaf extract on Albino Rats collected from University of Uyo Botanical Garden was not documented.']='P37108',['Different salt tolerance of Cucurbita maxima during germination and early seedling growth in University of Uyo environment was not recorded.']='P37109',['Phytochemical and Anti-bacterial Activities of Brachystegia eurycoma Seed Extract in Uyo, part of Akwa Ibom State are not well reported.']='P37110',['Different salts supplemented with nutrients amendment as affected growth morphology of Cucurbita melo in-vitro in University of Uyo were not properly documented.']='P37111',['No available information on the cultivation of two Varieties (White and Brown) Grown Under Salinity Stress']='P37112',['Has Citations']='P37113',['Has Priori Knowledge']='P37115',['Has study area']='P37116',['Has band parameters']='P37117',['Has Mineralogy']='P37118',['Classifier accuracy']='P37119',['Organizational processes, which requires knowledge']='P37120',['Products and services, which requires knowledge']='P37121',['KM objectives']='P37122',['Knowledge and its status']='P37123',['Stages of knowledge development']='P37124',['Types of knowledge flows']='P37125',['Activities, behaviours, means [for knowledge development and/or for knowledge conveyance and transformation']='P37126',['Human capital (Roles and accountabilities, KM stakeholders)']='P37127',['Processes (knowledge activities applied and embedded within organizational processes)']='P37128',['Technology and infrastructure']='P37129',['KM culture']='P37130',['Uses (RBL) blacklists ']='P37131',['Has Developer']='P37132',['BibliographyType']='P37133',['Identifier']='P37134',['Journal']='P37135',['Annote']='P37136',['Custom1']='P37137',['Custom3']='P37138',['Pages']='P37139',['ISBN']='P37140',['Address']='P37141',['Booktitle']='P37142',['Publisher']='P37143',['Howpublished']='P37144',['Note']='P37145',['Editor']='P37146',['has parameter']='P37147',['has parameters']='P37148',['Type of MOOC']='P37149',['MOOC Period']='P37150',['Sruvey participants']='P37151',['has experiment']='P37152',['Type of analysis']='P37153',['Student pass rates']='P37154',['Student pass rates %']='P37155',['guided analytics']='P37156',['social media']='P37158',['decentralized system']='P37159',['Genetically modified organisms']='P37164',['Rhizoctonia solani']='P37165',['Anastmosis groups']='P37166',['Binucleate Rhizoctonia']='P37167',['AG 3']='P37168',['AG4']='P37169',['AG 2.1']='P37170',['AG 4IIB']='P37171',['AG 5']='P37172',['AG 2.2IIIB']='P37173',['AG A']='P37174',['AG 3-PT']='P37175',['AG 4HG1']='P37176',['AG HG4III']='P37177',['AG R']='P37178',['AG K']='P37179',['AG F']='P37180',['AG 1']='P37181',['AG U']='P37182',['AG I']='P37183',['Anastomosis groups']='P37184',['chosen by']='P37185',['Neutraceuticals present in Microdesmis puberula and Bombax buonopozense has not been properly established and documented as an alternative dietary sources of food in Akwa Ibom State, Nigeria.']='P37186',['Alleviatory effect of Calopogonium muconoides and Aspilia africana compost the growth and neutraceutical composition of C. maxima has not been reported in Akwa Ibom State, Nigeria.']='P37187',['The potential use of Arbuscular Mycorrhizal Fungi (AMF) as a buffer to mitigate phytoextraction of heavy metals by C. maxima from soils contaminated with crude oil in Akwa Ibom State has not been properly documented.']='P37188',['Phytochemical screening (quantitative) and antidiabetic effect of the T. conophorum ethanolic leaf extract on albino rat has no record in Akwa Ibom State.']='P37189',['The impacts of Rhizophagus irregularis on the biomass and physiological attributes of C. maxima through morphological and physiological vicissitudes and improved vigour to survive under severe salt stress conditions has not been documented.']='P37190',['The influence of inoculating two vegetables: Telfairia occidentalis and Cucurbita maxima with arbuscular mycorrhiza (Rhizophagus irregularis and Glomus geosporum) with poultry manure in Na+ / K+ ratio adjustment and plant mineral nutrition is not properly recorded.']='P37191',['Reports regarding nutraceutical studies on these aquatic plants are scanty, hence the present study was conducted']='P37192',['Reports regarding nutraceutical studies on these aquatic plants are scanty, hence the present study was conducted.']='P37193',['Season']='P37196',['Method (nitrogen fixation rate)']='P37197',['Method (primary production)']='P37198',['Incubation time']='P37199',['No. of sampling stations']='P37200',['Sampling depth covered']='P37201',['Water column zone']='P37202',['Deep chlorophyll maxima (DCM) depth']='P37203',['Mixed layer depth (MLD)']='P37204',['Sea surface temperature (SST)']='P37205',['Sea surface salinity (SSS)']='P37206',['Wind speed']='P37207',['N:P i.e., [NO3- + NO2-]:[PO43-]']='P37208',['Region N depleted/replete']='P37209',['δ15N']='P37210',['Nitrogen fixation rate']='P37211',['Depth integrated nitrogen fixation rate']='P37212',['Primary production']='P37213',['Depth integrated primary production']='P37214',['Contribution of nitrogen fixation to primary production']='P37215',['Ocean']='P37216',['Open/coastal ocean']='P37217',['δ15N (surface PON)']='P37218',['contribution:research_aplication']='P37219',['contribution:VUVSpec_wllow[nm]']='P37220',['contribution:VUVSpec_wlup[nm]']='P37221',['contribution:VUVSpec_detector']='P37222',['contribution:VUVSpec_collection']='P37223',['contribution:VUVSpec_Calibration']='P37224',['contribution:VUVSpec_CalibrationMode']='P37225',['contribution:Plasma_Type']='P37226',['contribution:Plasma_Pressure']='P37227',['contribution:Plasma_Gases']='P37228',['contribution:Plasma_TeUp[eV]']='P37229',['contribution:Plasma_Ne[cm-3]']='P37230',['mutation']='P37231',['Has antimicrobial properties']='P37232',['Molecular Mechanism']='P37233',['Peptide:Lipid effective ratio']='P37234',['paper:journal']='P37235',['research_target']='P37236',['VUVSpec_wllow[nm]']='P37237',['VUVSpec_wlup[nm]']='P37238',['VUVSpec_detector']='P37239',['VUVSpec_collection']='P37240',['VUVSpec_Calibration[Y/N]']='P37241',['VUVSpec_CalibrationMode']='P37242',['Plasma_Type']='P37243',['P_Ne_1[cm-3]']='P37244',['P_Ne_2[cm-3]']='P37245',['VUVSpec_irradiance$$(s^{-1}cm^{-2} times 10^{15}$$']='P37246',['P_Gases']='P37247',['P_Pressure_1[Pa]']='P37248',['P_Pressure_2[Pa]']='P37249',['P_Te_1[eV]']='P37250',['P_Te_2[eV]']='P37251',['Insufficient data on the effect of crude oil pollution of soil on growth parameters of cassava.']='P37252',['Data split']='P37253',['Status of municipal water supply']='P37254',['VUVSpec_irradiance (s^-1 x cm^-2) x 10^15']='P37255',['Biogeographical region']='P37256',['Locus']='P37257',['Locus (genetics)']='P37258',['DNA sequencing method']='P37259',['Taxonomic group (Biology)']='P37264',['Phylum (Biology)']='P37266',['No. of species']='P37268',['No. of potential undescribed species']='P37270',['higher number estimated species']='P37271',['higher number estimated species (Method)']='P37272',['No. of estimated species']='P37273',['No. of estimated species (Method)']='P37274',['lower number estimated species']='P37275',['lower number estimated species (Method)']='P37276',['Exposure vessel']='P37277',['Effect concentration']='P37278',['Effect concentration in micromolar']='P37279',['Geographic scale']='P37280',['Geographic scale (Km2)']='P37281',['Maximum intraspecific distances averaged']='P37282',['nearest neighbor distance averaged']='P37283',['lower nearest neighbor distance']='P37284',['nearest neighbor distance lower limit']='P37285',['nearest neighbor distance upper limit']='P37286',['Maximum intraspecific distances lower limit']='P37287',['Maximum intraspecific distances upper limit']='P37288',['No. of idientified species with current taxonomy']='P37289',['evaluates']='P37290',['tool availability']='P37291',['Data Dimensionality Reduction Technique']='P37292',['Minerals/ Feature Mapped']='P37293',['Atmospheric Correction required']='P37294',['Priori Knowledge about study area']='P37295',['Encapsulation efficiency']='P37296',['Particle diameter (average)']='P37297',['Zeta potential']='P37298',['Minium Peptide:Lipid ratio']='P37299',['Minimum peptide:lipid ratio']='P37300',['Maximum peptide:lipid ratio']='P37301',['The rate at which religious activities was practised during COVID-19 lockdown in the southwestern Nigeria does not suggest strict compliance to COVID-19 preventive measures. However, the findings of the study revealed strict compliance']='P37302',['Peptide:lipid ratio']='P37303',['The type and quality of housing units in informal settlements affected mental health of residents.The findings of the study revealed that most occuring mental health problems were anxiety, depression, stress,sleeping problem and substance abuse']='P37304',['The general notion is that the installation of Close-Circuit Television (CCTV) in gated communities can forestall crime, nonetheless, its vicious anticipated capacities is not certain']='P37305',['Econometric model']='P37306',['Number of dependent variables']='P37307',['data collection']={'P37308','P56008'},['Bioactive compounds']='P37309',['IC50']='P37310',['Inhibition Constant']='P37311',['Identified Factors ']='P37312',['Analyzed Number of Publications']='P37313',['Future Challenges']='P37314',['Experiment name']='P37315',['Sampling year']='P37316',['Sampling period']='P37317',['Sampling stations']='P37318',['Coastal/open ocean']='P37319',['Experiment approach']='P37320',['Incubation period (hours)']='P37321',['Method (nitrogen fixation rates)']='P37322',['Nitrogen fixation rates']='P37323',['Surface nitrogen fixation rates']='P37324',['Depth integrated nitrogen fixation rates']='P37325',['Surface primary production']='P37326',['N:P i.e., [NO3 + NO2]:[PO4]']='P37327',['Delta15N (of surface PON)']='P37328',['water-cement ratio']='P37329',['research question ']='P37330',['ethanol exposure']='P37331',['Aims and Objectives']='P37332',['Research Area']='P37333',['Venue']='P37334',['Impact Factor']='P37335',['Lower limit (nitrogen fixation rates)']='P37338',['Upper limit (nitrogen fixation rates)']='P37339',['Unit (nitrogen fixation rates)']='P37340',['Thermal Resistance of Borehole']='P37341',['Uses RDF store']='P37342',['Has type']='P37343',['Against']='P37344',['Publication date']='P37345',['Publication location']='P37346',['Experimental treatment']='P37347',['Control conditions']='P37348',['Degree of warming (degrees C)']='P37349',['Change in species richness']='P37350',['Change in vegetation cover']='P37351',['Change in vegetation biomass']='P37352',['Bibliographic data source']='P37353',['Scientific network(s)']='P37354',['Social network analysis']='P37355',['neutron spectrum']='P37356',['nuclear reactor coolant']='P37357',['2D modeling']='P37358',['3D modeling']='P37359',['Software name']='P37360',['Nuclear reactor name']='P37361',['Nuclear reactor type']='P37362',['experimental facility']='P37363',['Area of study']='P37364',['Change in species richness due to warming']='P37366',['Change in vegetation biomass due to warming']='P37367',['Change in vegetation cover due to warming']='P37368',['Change in species richness due to warming (%)']='P37369',['Change in vegetation cover due to warming (%)']='P37370',['Change in vegetation biomass due to warming (%)']='P37371',['Brain Imaging modality']='P37372',['Number of cognitive states']='P37373',['Number of subjects considered for the analysis']='P37374',['Average classification accuracy']='P37375',['Machine learning classifier used']='P37376',['Classification scheme']='P37377',[' Block oriented dynamic query plan generation']='P37378',['Brin imaging modality']='P37379',['Actuation Method']='P37381',['Fabrication methods']='P37382',['System components']='P37383',['System location']='P37384',['Optimization method']='P37385',['Software']='P37386',['Levelized cost of energy']='P37387',['Solver']='P37388',['Polymer FDA approval']='P37394',['Cytotoxicity assay']='P37395',['IC50 of Drug loaded nanoparticles']='P37396',['unanimity principle']='P37397',['IC50 of Drug solution']='P37398',['Biodegredable or inorganic polymer']='P37399',['Polymer charachterisation']='P37400',['Nanoparicles preparation method ']='P37401',['Paricle size of nanoparicles']='P37402',['Poly dispercity index (PDI)']='P37403',['Drug entrapment efficiency']='P37404',['Critical micelle concentration (CMC)']='P37405',['Drug loading']='P37406',['Nanoparticle visualisation']='P37407',['has drug release studies']='P37408',['Principal producing strain']='P37409',['LD50 of Drug solution']='P37410',['Carbon source']='P37411',['Nitrogen source']='P37412',['Yield']='P37413',['Isolation source']='P37414',['Histopathological analysis']='P37415',['Time to acceptance']='P37416',['Carbon source concentration (% w/v)']='P37417',['Orgsnisations']='P37418',['Physical space size']='P37420',['Furniture setting']='P37421',['Nitrogen source concentration (% w/v)']='P37422',['Principal producing species']='P37423',['Yield percentage (CDW)']='P37424',['User roles']='P37428',['Material structure']='P37431',['Device type']='P37432',['Film deposition method']='P37433',[' Film structure']='P37434',['funder']={'P37436','wikidata:P8324'},['conducted ELISA']='P37437',['Western blot']='P37438',['number of references']={'P37439','wikidata:P10676'},['Data presentation']='P37440',['qPCR statistical analysis ']='P37441',['estimated ROS intracellular level ']='P37442',['used Western blot']='P37443',['2020']='P37444',['2017']='P37445',['calculated']='P37447',['Correlation Coefficient']='P37448',['Metamodel Integration with other architectures']='P37449',['Analysis']='P37450',['Contributation-1']='P37451',['Contributation-2']='P37452',['Model Prediction']='P37453',['Curve fitting']='P37454',['refered to as']='P37455',['What drive variation (if applicable)?']='P37456',['Major cations']='P37457',['Major anion']='P37458',['source of ion']='P37459',['land use type']='P37460',['Number of studied patients']='P37461',['median mHLA-DR expression in ICU patients']='P37462',['median mHLA-DR expression in ICU patients at admission']='P37463',['median mHLA-DR expression in ICU patients at day 3']='P37464',['median mHLA-DR expression in ICU patients at day 5']='P37465',['median mHLA-DR expression in ICU patients at admission to ICU']='P37466',['median mHLA-DR expression in ICU patients at day 3 to ICU']='P37467',['median mHLA-DR expression in ICU patients at day 5 to ICU']='P37468',['Hill coefficient value']='P37469',['drive variation']='P37470',['Bacterial strains used in study']='P37471',['antimibiotics']='P37472',['antibiotics']='P37473',['antibiotics used in study']='P37474',['antimicobials used in study']='P37475',['reasons that drive variations in hill coefficient']='P37476',['pharmacodynamic model used for calculation']='P37477',['Method used to calculate minimum inhibition concentration']='P37478',['used qPCR']='P37479',['kit used for RNA extraction ']='P37480',['genes detected by qPCR ']='P37481',['kit used for reverse transcription ']='P37482',['qPCR n value ']='P37483',['research field']={'P37484','P30'},['Metamodel scope_Business network']='P37485',['Metamodel scope_Operations']='P37486',['Metamodel scope_Strategy and structure']='P37487',['Metamodel scope_Revenue model and performance']='P37488',['atherosclerosis incidence']='P37489',['p-value of atherosclerotic lesion sizes']='P37490',['median mHLA-DR expression in ICU patients at day 7']='P37491',['median mHLA-DR expression in ICU patients at day 12']='P37492',['median mHLA-DR expression in ICU patients at day 20']='P37493',['Dosage of interferon-γ']='P37494',['Methodology scope_Development of BA initiatives']='P37495',['Methodology scope_Development of BA model']='P37496',['Methodology scope_Management of BA initiatives']='P37497',['Has exact calculation']='P37500',['Has bound calculations']='P37501',['Has the time complexity']='P37502',['reasons that drive variations in hill coeffcient if found']='P37503',['Can be used to find the group with the highest GBC']='P37504',['Can be used to find the group of size k with the highest GBC in a given network']='P37505',['View existing property: Can be used to find the group of size k with the highest GBC in a given network']='P37506',['Virus']='P37507',['Compound name']='P37508',['Class of compound']='P37509',['Organism Source']='P37510',['Source name']='P37511',['Data Size']='P37512',['software used to analyze the dose response data']='P37513',['value of hill coefficient']='P37514',['Summarization Type']='P37515',['Machine Learning Paradigm']='P37516',['Automatic Evaluation Metrics']='P37517',['Automatic Evaluation Scores']='P37518',['Human Evaluation Aspects']='P37519',['Data Language']='P37520',['Data Domain']='P37521',['Has frequency']='P37522',['Has method ']='P37523',['study location (country)']='P37524',['Sleep efficiency']='P37525',['Risk factors for sleep apnea']='P37526',['Treatment given to patients for sleep apnea']='P37527',['Risk factors for OSA']='P37528',['Treatment given to patients for OSA']='P37529',['Has frequency (%)']='P37530',['Apnea-hypopnea index']='P37532',['the reasons which drive variations in hill coeffcient if found']='P37533',['Sleep efficiency (%)']='P37534',['The estimated value of Hill coefficient']='P37535',['Apnea-hypopnea index (events/hour)']='P37536',['Location ']='P37537',['Metals employed']='P37538',['Metal used']='P37539',['Nuclearity']='P37540',['Ligand']='P37541',['Homo or heterometallic complex']='P37542',['application ']='P37544',['geographical scope']='P37545',[' Ecosystem services investigated']='P37546',['the reasons which drive variations in hill coeffcient']='P37547',['The reasons that drive variations in Hill coefficient']='P37548',['Location of the research group']='P37549',['western blot n value ']='P37550',['proteins detected by westernblot ']='P37551',['proteins detected by western blot ']='P37552',['Reaction yield']='P37553',['Minimmum inhibition concentration (MIC) average']='P37554',['Solvent']='P37555',['Precursor of cobinamide']='P37556',['Major reactant']='P37557',['Reaction time']='P37558',['Reaction time (minutes)']='P37559',['Reaction yield (%)']='P37560',['Temperature (°C)']='P37561',['molecules detected by ELISA']='P37562',['Special conditions']='P37563',['Scale-up (mg)']='P37564',['Safety hazard']='P37565',['data availability ']='P37566',['molecules detected by immunocytochemistry ']='P37567',['conducted immunocytochemistry ']='P37568',['method for Ros determination ']='P37569',[' concentration of ethanol exposure ']='P37570',['non wheat flour']='P37571',['Lower range of non wheat flour']='P37572',['Upper range of non wheat flour']='P37573',['optimal level of non wheat flour']='P37574',['factors affecting bacterial growth rate']='P37575',['conducted RNA sequencing']='P37576',['genes quantified by qPCR ']='P37577',['Uses drug']='P37578',['Scale-up']='P37579',['Semantic representation in Music']='P37580',['hasScenario']='P37581',['hasAssumption']='P37582',['hasEmpricialData']='P37583',['Energy savings']='P37584',['usesExogenousTimeSeries']='P37585',['hasFactsAbout']='P37586',['Family']='P37587',['Species ']='P37588',['Ploidy of sexuals']='P37589',['Ploidy of apomicts']='P37590',['Ecological differentiation']='P37591',['Sample shape and dimensions']='P37592',['Biblical passages']='P37593',['What is the meaning of בן אדם in the book of Ezekiel and what is the intention of its use by God.']='P37594',['What purpose has Ezekiel\'s inaugural vision?']='P37595',['Complexity']='P37596',['Crowd']='P37597',['Scale']='P37598',['Level of Knowledge, skills, and expertise']='P37599',['research_problem']='P32',['Implemented queries']='P37601',['Implemented query Q1']='P37602',['Performence Study']='P37603',['Has Configuration']='P37604',['Implemented Language']='P37606',['Has compared with']='P37607',['Name of system']='P37608',['Backend Storage']='P37609',['PC Configuration']='P37610',['RDF datasets']='P37611',['Has Triples']='P37612',['Has Entities']='P37613',['Prototype System Name']='P37614',['Number of triples']='P37615',['has potential']='P37616',['share RE']='P37617',['has development']='P37618',['has post-processing']='P37619',['has assumptions for post-processing']='P37620',['Emission reduction']='P37621',['Considers technological innovation']='P37622',['SPARQL queries']='P37623',['Has query']='P37624',['Has access pattern']='P37625',['Index Structure and Operatos']='P37626',['Has operations']='P37627',['Has cost']='P37628',['has symbol']='P37629',['Index Structure and Operators']='P37630',['Query Optimization']='P37631',['has Statistic']='P37632',['Processor']='P37634',['Clock rate']='P37635',['Queries']='P37636',['Number of threads']='P37637',['has case']='P37638',['has Input']='P37639',['has advantage']='P37640',['has component']='P37641',['Notation']='P37642',['Form']='P37643',['implemented in']='P37644',['designed to']='P37645',['has term query']='P37646',['has class']='P37647',['is combination of']='P37648',['uses ']='P37651',['Best Average Recall']='P37652',['Best Mean Average Precision']='P37653',['Niobate Co-Catalyst']='P37654',['Has (Best )performance']='P37656',['has synonym']='hasSynonym',['show property']='ShowProperty',['has entity']='HasEntity',['Built on top of']='P37657',['Hardware']='P37658',['Has Dataset size']='P37659',['Proof robustnees']='P37661',['is comparable']='P37662',['has source of funding']='P37663',['has new aspects']='P37664',['has spatial coverage']='P37665',['has target year']='P37666',['has transformation path']='P37667',['models energy sector']='P37668',['models demand sector']='P37669',['has economic (behavioural) rationale']='P37670',['includes technologies']='P37671',['includes economic foci']='P37672',['includes social foci']='P37673',['has endogenous variables']='P37674',['is used in study']='P37675',['supported data modelling language']='P38000',['uses benchmark']='P38001',['Query']='P38002',['dataset size']='P38003',['Is compared with']='P39000',['Uses Computer Hardware']='P39002',['Uses computer software']='P39003',['Predicates']='P39004',['MAP multiple access patterns']='P39005',['Number of properties']='P39006',['Memory']='P39007',['hasMathematicalProperty']='P39008',['hasBasicInformation']='P39009',['HasOpenness']='P39010',['HasModelIntegration']='P39011',['HasInterface']='P39012',['Has model file format']='P39013',['is integrated into model']='P39014',['integrates model']='P39015',['Material of the cantilever']='P39016',['Structure of the biosensor']='P39017',['Biosensor working principle']='P39018',['Theoretical analysis performed']='P39019',['Steps']='P39020',['Number of instances']='P39021',['Mode of Transportation']='P39022',['has model class']='P39023',['has approach to uncertainty']='P39024',['is suited for many scenarios or Monte Carlo']='P39025',['has technical data anchored in the model']='P39026',['has computational requirements']='P39027',['has typical computation time']='P39028',['has typical computation hardware']='P39029',['has simulation approach']='P39030',['has exemplary research question']='P39031',['has methodical focus']='P39032',['has contact person']='P39033',['has support']='P39034',['based on framework']='P39035',['has number of developers']='P39036',['has number of users']='P39037',['ZnO form']='P39038',['Method of nanomaterial synthesis']='P39039',['Piezoelectric coefficient measured']='P39040',['Piezoelectric coefficient measured (pm/V)']='P39041',['Piezoelectric measurements']='P39042',['Device performance']='P39043',['Device structure']='P39044',['ZnO nanomaterial layer thickness (nm)']='P39047',['Evaluation methods']='P39048',['Personalisation features']='P39049',['Related links']='P39050',['Test data']='P39051',['Reuse of existing vocabularies']='P39052',['Alligned with FAIR principles']='P39053',['Development in']='P39054',['Online data availability']='P39055',['Test related data']='P39056',['AUC']='P39057',['Structure of the sensor']='P39058',['Sensibility of the pressure sensor ( /kPa)']='P39059',['Reponse time (ms)']='P39060',['Detection limit (Pa)']='P39061',['Loading-unloading cycles']='P39062',['Potential application of the sensor']='P39063',['Applied pressure range (kPa)']='P39064',['Software development approach']='P39065',['Information and communications technology (ICT)']='P39066',['Environmental sustainability']='P39067',['Productivity']='P39068',['Quality of life']='P39069',['Equity and social inclusion']='P39070',['Physical infrastructure']='P39071',['Accessible transport system for all']='P39072',['Participatory and Inclusive urbanization']='P39073',['World’s cultural and natural heritage protection']='P39074',['Protection of the poor and people in vulnerable situation']='P39075',['Capital enviromental impact of cities reduction']='P39076',['Access to safe and inclusive public space']='P39077',['Urban-rural linkagesages']='P39078',['Implementation of mitigation and adaptation plans and policies']='P39079',['Countries with existing local disaster reduction stratergy']='P39080',['Sustainable and resilient buildings']='P39081',['End poverty in all its forms everywhere']='P39082',['Counterion']='P39083',['Counterion interaction in DCM']='P39084',['Counterion interaction in Toluene']='P39085',['BLA (pm)']='P39086',['BLA evaluation method']='P39087',['Type of Lipid-based nanoparticle']='P39088',['Uses Lipid ']='P39089',['Order (Taxonomy - biology)']='P39091',['No. of samples (sequences)']='P39092',['Class (Taxonomy - biology)']='P39093',['Existence questions']='P39094',['Description and Classification questions']='P39095',['Descriptive-Comparative questions']='P39096',['Empirical truth']='P39097',['Empirical truth stances']='P39098',['threat to validity']='P39099',['has main specific properties']='P39100',['has further properties']='P39101',['is used by institution']='P39102',['Models technology']='P39104',['has temporal resolution']='P39105',['Has observation period']='P39106',['has electrical grid properties']='P39107',['Models user behaviour']='P39108',['Models demand side management']='P39109',['Models changes in efficiency']='P39110',['Includes market model']='P39111',['Has further dimension']='P39112',['Particle size of nanoparticles']='P39113',['Drug entrapment efficiency (%)']='P39114',['Organisations']='P39115',['Time to acceptance (days)']='P39116',['Maximum efficiency of the solar cell (%)']='P39117',['Area of the solar cell (cm2)']='P39118',['Fill factor, FF (%)']='P39119',['Open circuit voltage, Voc (V)']='P39120',['Solar cell structure']='P39121',['Short-circuit current density, Jsc (mA/cm2)']='P39122',['Individual extraction']='P39124',['Concepts learning']='P39125',['Individual learning']='P39126',['Properties extraction']='P39128',['Class hierarchy extraction']='P39129',['Properties hierarchy']='P39130',['Axiom extraction/learning']='P39131',['Class hierarchy extraction/learning']='P39132',['Concepts extraction/learning']='P39133',['Individual extraction/learning']='P39134',['Properties extraction/learning']='P39135',['Properties hierarchy extraction/learning']='P39136',['Terms extraction/learning']='P39137',['Rule extraction/learning']='P39138',['Ontology type']='P39139',['Particle size of nanoparticles (nm)']='P39140',['studied taxonomic group (Biology)']='P39141',['R136288']='P39142',['R136290']='P39143',['R136292']='P39144',['R136306']='P39145',['R136308']='P39146',['R136310']='P39147',['has file format']='P39148',['Is used in framework']='P39149',['has components for power generation or conversion']='P39150',['has components for transfer, infrastructure or grid']='P39151',['Has components for storage']='P39152',['has_analysis_approach']='P39153',['has link to user documentation']='P39154',['has link to developer documentation']='P39155',['Main_manipulation_of_interest']='P39156',['number of results']='P39157',['mean value']='P39158',['geometric mean']='P39159',['model name']={'HAS_MODEL','P105016'},['Has_sample_size']='P40000',['Type_of_sample']='P40001',['Has_result']='P40002',['Extraction methods']='P40003',['Preprocessing required']='P40005',['Minerals identified (Lunar rock samples)']='P40007',['Minerals Identified (Terrestrial samples)']='P40008',['Iron Position (nm, VNIR-SWIR Terrestrial Samples)']='P40009',['Silicates Position (nm, Raman Terrestrial Samples)']='P40010',['Carbonates position (nm, Mid-Infrared Terrestrial Samples)']='P40011',['Pyroxene position (nm, Mid-Infrared Lunar Samples)']='P40012',['Plagioclase position (nm, Mid-Infrared Lunar Samples)']='P40013',['Silicates Position (nm, Raman Lunar Samples)']='P40014',['Iron Position (nm, VNIR-SWIR Lunar Samples)']='P40015',['Olivine position (nm, Mid-Infrared Lunar Samples)']='P40016',['Pyroxene (nm, VNIR-SWIR Lunar Samples)']='P40017',['Photoredox catalyst']='P40018',['Additive']='P40019',['Mechanism']='P40020',['Type of transformation']='P40021',['Time (hours)']='P40022',['Silicates Position (nm, Thermal Terrestrial Samples)']='P40024',['Support statistics']='P40025',['occupant presence or actions']='P40026',['climate zone (köppen-geiger)']='P40027',['stochastic opa models: probit analysis']='P40029',['data-driven models: gradient boosting']='P40030',['data-driven models: naive bayes']='P40031',['resource:occupant presence or actions']='P40032',['resource:city']='P40033',['resource:climate zone (köppen-geiger)']='P40034',['Renewables']='P40035',['Conventional']='P40036',['Electricity']='P40037',['Gas']='P40038',['Heat']='P40039',['Structure of the diode']='P40041',['ZnO dopant']='P40042',['ZnO thickness (nm)']='P40043',[' Rectification ratio (RR) ']='P40044',['Series resistance, Rs (Ohm)']='P40045',['Barrier height (eV)']='P40046',['Voltage (V)']='P40047',['ZnO film deposition method']='P40048',['Intended_Application']='P40049',['Excitation_type']='P40050',['Excitation_frequency']='P40051',['Feed_gas']='P40052',['Gas _flow _rate[slm]']='P40053',['Input_power[W]']='P40054',['Specific Energy Density[J/L]']='P40055',['Temperature[K]']='P40056',['Ideality factor']='P40057',['Electrical contacts']='P40058',['Nanoparticles preparation method']='P40059',['has Input type of indicators, share']='P40060',['has Process type of indicators, share']='P40061',['has Output type of Indicators, share']='P40062',['has Outcome type of Indicators, share']='P40063',['has Impact type of Indicators, share']='P40064',['has contribution type']='P40065',['Qeury']='P40066',['Unnamed: 0']='P40067',['HAS_VENUE']='P40068',['Surfactant']='P41000',['Ontology construction']='P41001',['Knowledge source']='P41002',['Has Datasets']='P41003',['LPR Channel used(MHz)']='P41004',['Correction methods']='P41005',['Preprocessing']='P41006',['Structural Information']='P41007',['Layer']='P41008',['Average Thickness (m)']='P41009',['Density (g/cm^3)']='P41010',['Average Permittivity (Ch-4)']='P41011',['Validation']='P41012',['Datatype']='P41013',['Total datasets (Channel-2)']='P41014',['Avg. Dielectric constant']='P41015',['LPR Channel used (MHz)']='P41016',['Average Permittivity (Ch-3)']='P41017',['Relative Permittivity (Ch-3)']='P41018',['Relative Permittivity (Ch-4)']='P41019',['Total datasets (Channel-1)']='P41020',['Piezoresistive Material']='P41021',['Response time (ms)']='P41022',['Sensitivity (/kPa)']='P41023',['has been evaluated in the City']='P41024',['has been evaluated in the Country']='P41025',['belongs to Smart City Dimension']='P41026',['addresses Smart city action']='P41027',['helps achieve Smart city Goal']='P41028',['Addresses Smart city Action']='P41029',['has Application Scope']='P41030',['has Data Source']='P41031',['has Target users']='P41032',['has Recommended items']='P41033',['uses Recommendation approach']='P41034',['uses Recommendation Method']='P41035',['is based on User Preferences Type']='P41036',['Is based on Explicit User Preferences']='P41037',['Is based on Implicit User Preferences']='P41038',['Exploited data']='P41039',['has Implementation level']='P41040',['Mission']='P41041',['Launch Year']='P41042',['Instrument']='P41043',['Spectral range (nm)']='P41044',['Spectral resolution-VNIR (nm)']='P41045',['Spectral resolution-SWIR (nm)']='P41046',['Imager/ Non-Imager']='P41047',['Spatial resolution (m)']='P41048',['No. of Bands']='P41049',['No. of datasets']='P41050',['Swath (km)']='P41051',['Low Calcium Pyroxene (LCP-nm)']='P41052',['Olivine (nm)']='P41053',['Pyroxene (nm)']='P41054',['Plagioclase (nm)']='P41055',['Orthopyroxene (nm)']='P41056',['Clinopyroxene (nm)']='P41057',['Reference data']='P41058',['Swath']='P41059',['Ferrous (nm)']='P41060',['High Alumina basalt (nm)']='P41061',['High Calcium Pyroxene (LCP-nm)']='P41062',['Mafic Silicate (nm)']='P41063',['Fe-rich spinels (nm)']='P41064',['Cr/Fe-rich spinels (nm)']='P41065',['Mg-rich spinels (nm)']='P41066',['Elemental abundance maps']='P41067',['Total sampling stations']='P41068',['Lower limit (integrated primary production)']='P41069',['Upper limit (integrated primary production)']='P41070',['Unit (integrated primary production)']='P41071',['Primary production unit is different in paper']='P41072',['Average primary production']='P41073',['Unit (average primary production)']='P41074',['Lower limit (primary production)']='P41075',['Upper limit (primary production)']='P41076',['Unit (primary production)']='P41077',['High Calcium Pyroxene (HCP-nm)']='P41078',['Samples source']='P41079',['Techniques/ Analysis']='P41080',['Excitation Frequency/Wavelngth (nm)']='P41081',['Grain size (mm)']='P41082',['Raman Stokes-shift range (cm-1)']='P41083',['Raman-spectral resolution (cm-1)']='P41084',['Infrared range (cm-1)']='P41085',['Rock type']='P41086',['Olivine-2 (cm-1)']='P41087',['Orthopyroxene-3 (cm-1)']='P41088',['Clinopyroxene-2 (augite) (cm-1)']='P41089',['Pyroxene-2 (cm-1)']='P41090',['Pyroxene-4 (cm-1)']='P41091',['Agglutinates-1 (Glass) (cm-1)']='P41092',['Agglutinates-3 (Glass) (cm-1)']='P41093',['Relavance']='P41094',['K-Feldspar-1 (cm-1)']='P41095',['Olivine-1 (cm-1)']='P41096',['Orthopyroxene-1 (cm-1)']='P41097',['Orthopyroxene-2 (cm-1)']='P41098',['Plagioclase-1 (cm-1)']='P41099',['Plagioclase-2 (cm-1)']='P41100',['RE-Whitlockite-2(cm-1)']='P41101',['Clinopyroxene-3 (augite) (cm-1)']='P41102',['Pyroxene-1 (cm-1)']='P41103',['Pyroxen3 (cm-1)']='P41104',['Orthopyroxene-4 (cm-1)']='P41105',['Plagioclase-4 (cm-1)']='P41106',['RE-Whitlockite-1 (cm-1)']='P41107',['Clinopyroxene (augite)-1 (cm-1)']='P41108',['Epoxy resin (cm-1)']='P41109',['Baddeleyite (cm-1)']='P41110',['Apatite (cm-1)']='P41111',['Quartz-2 (cm-1)']='P41112',['Cristobalite-1(cm-1)']='P41113',['Cristobalite-2 (cm-1)']='P41114',['Plagioclase-3 (cm-1)']='P41115',['Anorthite (cm-1)']='P41116',['Agglutinates-2 (Glass) (cm-1)']='P41117',['ilmenite (cm-1)']='P41118',['K-Feldspar-2 (cm-1)']='P41119',['Quartz-1 (cm-1)']='P41120',['Pigeonite (cm-1)']='P41121',['Clinopyroxene (augite)-3 (cm-1)']='P41122',['Clinopyroxene(augite)-2 (cm-1)']='P41123',['Clinopyroxene (augite)-2 (cm-1)']='P41124',['Pyroxene-3 (cm-1)']='P41125',['Excitation Frequency/Wavelength (nm)']='P41126',['Cristobalite-1 (cm-1)']='P41127',['Ontology name']='P41128',['Reused ontology']='P41130',['spatial level']='P41131',['Physical level']='P41132',['Socio-economic level']='P41133',['Activity level']='P41134',['Information level']='P41135',['Technology level']='P41136',['Administration level']='P41137',['Service level']='P41138',['Transportation level']='P41139',['Safety and risk management level']='P41140',['Environmental level']='P41141',['Ontology availability']='P41142',['Agent level']='P41144',['Other levels']='P41145',['Reused model']='P41146',['Study cohort']='P41147',['Outcome assessment']='P41148',['Aims']='P41149',['Type of inorganic nanoparticles']='P41150',['Research_objective']='P41151',['Research_plan']='P41152',['Spec_wllow']='P41153',['Unit_spec']='P41154',['Spec_wlup']='P41155',['VUV']='P41156',['Input_power']='P41157',['Unit_input_power']='P41158',['Unit_frequency']='P41159',['Feed_gases']='P41160',['Ambient_atmosphere']='P41161',['Te']='P41162',['Unit_Te']='P41163',['Ne']='P41164',['Unit_Ne']='P41165',['OES']='P41166',['Gas _flow _rate']='P41167',['Unit_gas_flow_rate']='P41168',['T_gas']='P41169',['Unit_gas']='P41170',['Part_density{O,N,OH,O_3,Ar*}']='P41171',['Unit_part_density']='P41172',['PROES']='P41173',['TALIFF']='P41174',['OAS']='P41175',['Mass spectrometry']='P41176',['Unit_wllow']='P41177',['Unit_wlup']='P41178',['Plasma_discharge']='P41179',['VUVS']='P41180',['Google Scholar ID']='googleScholarID',['ResearchGate ID']='researchGateID',['LinkedIn ID']='linkedInID',['Sensing material']='P41181',['Sensitivity of the glucose biosensor (mA/cm². mM)']='P41182',['Linear range (mM)']='P41183',['Limit of detection']='P41184',['Limit of detection (ppm)']='P41185',['Minimum experimental range']='P41186',['Maximum experimental range']='P41187',['Sensing environment']='P41188',['Maximum experimental range (ppm)']='P41189',['Minimum experimental range (ppm)']='P41190',['Type xml document']='P41191',['RDF Graph']='P41192',['Learning purpose']='P41193',['Carbon print']='P41194',['Carbon footprint']='P41195',['Prototype extraction tool']='P41196',['Type of industry']='P41197',['Positioning in the logistics chain']='P41198',['Decision-making level']='P41199',['Type of process']='P41200',['Energy aspect']='P41201',['Workshop type']='P41202',['Resolution methods']='P41203',['Carbon emission']='P41204',['Interest in carbon emissions']='P41205',['Business architecture']='P41206',['Processing']='P41207',['Water/hydrous (nm)']='P41208',['Ferric/hydroxides (nm)']='P41209',['Fayalitic olivine (nm)']='P41210',['Iron-magnesium smectites (nm)']='P41211',['Iron-rich nontronite (nm)']='P41212',['Magnesium-rich saponite (nm)']='P41213',['Ferrous (Fe-smectite clays / olivine) (nm)']='P41214',['OH stretch/overtone (nm)']='P41215',['Volcanic glass (nm)']='P41216',['Saponite (nm)']='P41217',['Montmorillonite (nm)']='P41218',['High-Fe chlorites (nm)']='P41219',['Mica minerals (illite and/or muscovite) (nm)']='P41220',['Kaolinite (nm)']='P41221',['Al-bearing phyllosilicates (Al-OH) (nm)']='P41222',['Opal (nm)']='P41223',['Dickite (nm)']='P41224',['Mg-Carbonate (nm)']='P41225',['Ca-Carbonate (nm)']='P41226',['Fe-Carbonate (nm)']='P41227',['Carbonates (nm)']='P41228',['Nanophase ferric oxide (nm)']='P41229',['Fine-grained olivine (nm)']='P41230',['High calcium Pyroxene (nm)']='P41231',['Molecular water (nm)']='P41232',['Water ice (nm)']='P41233',['Carbon-di-oxide Ice (nm)']='P41234',['Unaltered hydrated glass (nm)']='P41235',['Mono/polyhydrated sulfate mixture (nm)']='P41236',['Crystalline ferric oxide (hematite) (nm)']='P41237',['Water overtone (nm)']='P41238',['Absorbed water (nm)']='P41239',['Users\' engagement']='P41240',['Number of perspectives']='P41241',['Museum involved']='P41242',['Language of smart objects\' description']='P41243',['Has users\' engagement estimate']='P41244',['Has user interaction modality']='P41245',['Has number of user interactions']='P41246',['Has number of perspectives']='P41247',['has pageviews']='P41248',['has subject domain']='P41249',['digtal resource observation length']='P41250',['museum collection']='P41251',['has cross-border region']='P41253',['discusses method']='P41256',['has sources']='P41257',['type of contested heritage']='P41258',['has stakeholder']='P41259',['heritage site']='P41262',['materal']='P41263',['has communication channel']='P41264',['Illite']='P41265',['Muscovite']='P41266',['Link']='P41267',['Data architecture']='P41270',['Application architecture']='P41271',['Technology architecture']='P41272',['Natural environment']='P41273',['Built environment']='P41274',['Water and waste']='P41275',['Transport']='P41276',['Education, culture, innovation & science']='P41278',['Health, well-being & safety']='P41279',['Governance and citizen engagement']='P41280',['ICT']='P41281',['has size of area to be renovated in sq.m.']='P41283',['Technology type']='P41284',['Heater material']='P41285',['Working fluid']='P41286',['Bandwidth (Hz)']='P41287',['Power (mW)']='P41288',['Temperature sensor type']='P41289',['Resolution/ noise (mg)']='P41290',['Sensitivity (mV/g)']='P41291',['Linearity range (g)']='P41292',['has smart city isntance']='P41293',['has smart city instance']='P41294',['has a stage']='P41299',['has a subject domain']='P41300',['has dubject domain']='P41306',['has mentors']='P41309',['has research domain']='P41310',['Article']='P41313',['Unit of the particle size of nanoparticle']='P41314',['Colitis model']='P41315',['performance title']='P41316',['dance group']='P41317',['Has evaluation task']='P41318',['Terms learning']='P41319',['Axiom learning']='P41320',['Properties learning']='P41321',['Properties hierarchy learning']='P41322',['Rule learning']='P41323',['Class hierarchy learning']='P41324',['Learning method']='P41325',['Relationship learning']='P41326',['Learning tool']='P41327',['Implemented framework']='P41328',['Expressivity']='P41329',['Application site']='P41330',['RDBM name']='P41331',['OWL type']='P41332',['Integrity constraints']='P41333',['Field data']='P41335',['Goethite (nm)']='P41336',['Gibbsite (nm)']='P41337',['Bauxite dominant laterite bauxite (nm)']='P41338',['Band ratio']='P41339',['Amphibolite (nm)']='P41340',['Anorthosites (nm)']='P41341',['Charnockite (nm)']='P41342',['Pink Magmatite (nm)']='P41343',['Hornblende biotite gneiss (nm)']='P41344',['Granite (nm)']='P41345',['Fluvial (nm)']='P41346',['Phyllosilicates (nm)']='P41347',['Fe-OH bearing minerals (nm)']='P41348',['Mg-OH bearing minerals (nm)']='P41349',['Limestone (nm)']='P41350',['Magnetite quartzite (nm)']='P41351',['Garnetiferrous pyroxene granulite (nm)']='P41352',['Garnetiferrous pyroxene granulite (nm)']='P41353',['Magnetite (ferric ion) (nm)']='P41354',['Magnetite (ferric iron) (nm)']='P41355',['Dunite (nm)']='P41356',['Orthoclase (nm)']='P41357',['Biotite (nm)']='P41358',['Muscovite (nm)']='P41359',['Iron oxide (nm)']='P41360',['Country rocks (nm)']='P41361',['Uses Climate Scenario']={'P41362','P41366','P41370','P41374'},['Average Global Mid-Century Warming']={'P41363','P41367','P41371','P41375'},['Average Global End-Century Warming']={'P41364','P41368','P41372','P41376'},['Has Ensemble Size']={'P41365','P41369','P41373','P41377'},['Coastal ocean sampling']='P41378',['Open ocean sampling']='P41379',['Sampling depth covered (m)']='P41380',['Lower limit (total N uptake)']='P41381',['Upper limit (total N uptake)']='P41382',['Uptake rate HAS_UNIT']='P41383',['Uptake unit is different in paper']='P41384',['Minerals mapped']='P41385',['Phyllite (nm)']='P41386',['Si-O (nm)']='P41387',['Alunite (Opalized rock) (nm)']='P41388',['Opalized rock (nm)']='P41389',['Argillized rock (nm)']='P41390',['Kaolinite ( Argillized rock) (nm)']='P41391',['Hematite (nm)']='P41392',['Silicified rock (Si-O) (nm)']='P41393',['Phyllite (Si-O) (nm)']='P41394',['Buddingtonite (nm)']='P41395',['Calcite (nm)']='P41396',['Si-O-H (nm)']='P41397',['Playa (nm)']='P41398',['Tuff (nm)']='P41399',['illite (nm)']='P41400',['Chlorite (nm)']='P41401',['Carbonate (nm)']='P41402',['Clay minerls (nm)']='P41403',['Field instrument']='P41404',['Field work']='P41405',['Quartz (nm)']='P41406',['Actinol (nm)']='P41407',['Jarosite (nm)']='P41408',['Pigeonite (nm)']='P41409',['Augite (nm)']='P41410',['Albite (nm)']='P41411',['Mirabilite (nm)']='P41412',['Salt (nm)']='P41413',['Scolecite (nm)']='P41414',['Gray hematite (nm)']='P41415',['Banded Hematite Quartz (BHQ) (nm)']='P41416',['Blue hematite (nm)']='P41417',['Laminated ore (nm)']='P41418',['Lateritic ore (nm)']='P41419',['Geothite (nm)']='P41420',['OH (nm)']='P41421',['Al-OH (nm)']='P41422',['H2O (nm)']='P41423',['Greyish brown loam (nm)']='P41424',['Kaosmec altered mineral (nm)']='P41425',['Dolomite (nm)']='P41426',['Phlogopite (nm)']='P41427',['L1-L2 pairs']='P41428',['Language Genus']='P41429',['Consumption and income ']='P41430',['Land and ecosystems']='P41431',['Air quality']='P41432',['Energy resources']='P41433',['Mineral resources']='P41434',['Financial capital']='P41435',['Labour']='P41436',['Climate']='P41437',['Physical capital']='P41438',['Leisure']='P41439',['Institutions']='P41440',['Trust']='P41441',['Physical safety']='P41442',['Subjective well-being']='P41443',['Nutrition']='P41444',['Knowledge capital']='P41445',['Thickness of the dielectric layer (microns)']='P41446',['Relative dielectric constant']='P41447',[' Apparent capacitance - Ca (pF)']='P41448',['Real down-state capacitance - Cr (pF)']='P41449',['Capacitances ratio (Cr/ Ca)']='P41450',['Contact area (microns2)']='P41451',[' MEMS switch type']='P41452',['Structures and organisations']='P41453',['Processes']='P41454',['Roles and responsibilities']='P41455',['Technology and data']='P41456',['Legislation and policies']='P41457',['Exchange arragements']='P41458',['Aggregate-based measurements']='P41459',['Aggregate-based measures']='P41460',['Component-based measures']='P41461',['Substantive outputs']='P41462',['Procedural changes']='P41463',['Degree of autonomy']='P41464',['Local conditions']='P41465',['Total N uptake (lower limit) (summer monsoon)']='P41466',['Total N uptake (upper limit) (summer monsoon)']='P41467',['Uptake rate unit']='P41468',['Mixed layer depth (meter) (lower limit)']='P41469',['Mixed layer depth (meter) (upper limit)']='P41470',['Uptake rate unit is different in paper']='P41471',['NO3 uptake (lower limit) (fall inter-monsoon)']='P41472',['NO3 uptake (upper limit) (fall inter-monsoon)']='P41473',['NH4 uptake (lower limit) (fall inter-monsoon)']='P41474',['NH4 uptake (upper limit) (fall inter-monsoon)']='P41475',['Urea uptake (lower limit) (fall inter-monsoon)']='P41476',['Urea uptake (upper limit) (fall inter- monsoon)']='P41477',['Total N uptake (lower limit) (fall inter-monsoon)']='P41478',['Total N uptake (upper limit) (fall inter-monsoon)']='P41479',['NO3 uptake (lower limit) (winter monsoon)']='P41480',['NO3 uptake (upper limit) (winter monsoon)']='P41481',['NH4 uptake (lower limit) (winter monsoon)']='P41482',['NH4 uptake (upper limit) (winter monsoon)']='P41483',['Total N uptake (lower limit) (winter monsoon)']='P41484',['Total N uptake (upper limit) (winter monsoon)']='P41485',['NO3 uptake (lower limit) (spring inter-monsoon)']='P41486',['NO3 uptake (lower limit) (summer monsoon)']='P41487',['NO3 uptake (upper limit) (spring inter-monsoon)']='P41488',['NO3 uptake (upper limit) (summer monsoon)']='P41489',['NH4 uptake (lower limit) (spring inter-monsoon)']='P41490',['NH4 uptake (lower limit) (summer monsoon)']='P41491',['NH4 uptake (upper limit) (spring inter-monsoon)']='P41492',['NH4 uptake (upper limit) (summer monsoon)']='P41493',['Urea uptake (lower limit) (spring inter-monsoon)']='P41494',['Urea uptake (lower limit) (summer monsoon)']='P41495',['Urea uptake (upper limit) (spring inter-monsoon)']='P41496',['Urea uptake (upper limit) (summer monsoon)']='P41497',['Total N uptake (lower limit) (spring inter-monsoon)']='P41498',['Total N uptake (upper limit) (spring inter-monsoon)']='P41499',['Sea surface temperature (degree Celsius) (lower limit)']='P41500',['Sea surface temperature (degree Celsius) (upper limit)']='P41501',['Sea surface salinity (lower limit)']='P41502',['Sea surface salinity (upper limit)']='P41503',['Remark']='P41504',['NO3 uptake (lower limit) (austral summer)']='P41505',['NO3 uptake (upper limit) (austral summer)']='P41506',['NH4 uptake (lower limit) (austral summer)']='P41507',['NH4 uptake (upper limit) (austral summer)']='P41508',['Total N uptake (lower limit) (austral summer)']='P41509',['Total N uptake (upper limit) (austral summer)']='P41510',['Sampling depth (meter) (lower limit)']='P41511',['Sampling depth (meter) (upper limit)']='P41512',['Average N2 fixation rate']='P41513',['Average N2 fixation rate unit']='P41514',['Depth integrated N2 fixation rate (lower limit)']='P41515',['Depth integrated N2 fixation rate (upper limit)']='P41516',['Depth integrated N2 fixation rate unit']='P41517',['Volumetric N2 fixation rate (lower limit)']='P41518',['Volumetric N2 fixation rate (upper limit)']='P41519',['Volumetric N2 fixation rate unit']='P41520',['Average N2 fixation rate (summer)']='P41521',['Average N2 fixation rate (spring)']='P41522',['N2 fixation rate unit is different in paper']='P41523',['Type of nanoparticles']='P41524',['Mechanism of Antiviral Action']='P41525',['vuvspec_irradiance']='P41526',['Unit_vuvspec_irradiance']='P41527',['Pressure']='P41528',['Unit_pressure']='P41529',['Developed at']='P41530',['Developed by']='P41531',['Evaluation metrics']='P41532',['has novel approach']='P41533',['Outcome']='P41534',['Impact']='P41535',['Hard smartness']='P41536',['Soft smartness ']='P41537',['Total participants']='P41538',['Other resources']='P41540',['as']='P41541',['Geographic scale ($$Km^2$$)']='P41542',['Spectral_lines']='P41543',['Figure for']='P41544',['Target gas']='P41545',['Target gas concentration']='P41546',['Target gas concentration (ppm)']='P41547',['Reponse (%)']='P41548',['Response (%)']='P41549',['Response time (s)']='P41550',['Recovery time (s)']='P41551',['Nanomaterial']='P41552',['vuvspec_irradiance [Ar I, Ar II]']='P41553',['vuvspec_irradiance [Al I, Al II, C$$_x$$F$$_y$$, Ne,I, Xe I, He I]']='P41554',['vuvspec_irradiance [H I,H$$_2$$N I,N$$_2$$,O I]']='P41555',['Minimum temperature (C)']='P41556',['Maximum temperature (C)']='P41557',['Has a unit']='P41558',['has composite indicator']='P41559',['Components']='P41560',['Components of smart city governance']='P41561',['vuvspec_irradiance [Al I, Al II, C_xF_y, Ne,I, Xe I, He I]']='P41562',['vuvspec_irradiance [H I,H_2,N I,N_2,O I]']='P41563',['vuvspec_irradiance [Al I, Al II, C_xF_y, Ne I, Xe I, He I]']='P41564',['vuvspec_irradiance [H I,H_2, N I,N_2,O I]']='P41565',['published by']='P41566',['Number of identified species with current taxonomy']='P41567',['Geographic scale (Km²)']='P41568',['Film thickness (nm)']='P41569',['Film orientation']='P41570',['Surface roughness (nm)']='P41571',['Components of the smart city governance_Stakeholders']='P41572',['Components of the smart city governance_Structures and organisations']='P41573',['Components of the smart city governance_Processes']='P41574',['Components of the smart city governance_Roles and responsibilities']='P41575',['Components of the smart city governance_Technology and data']='P41576',['Components of the smart city governance_Legislation and policies']='P41577',['Components of the smart city governance_Exchange arragements']='P41578',['Measurements_Aggregate-based measures']='P41579',['Measurements_Component-based measures']='P41580',['Contextual factors_Degree of autonomy']='P41581',['Contextual factors_Local conditions']='P41582',['Outcomes_Substantive outputs']='P41583',['Outcomes_Procedural changes']='P41584',['Registry Established Year']='P41585',['Executive']='P41586',['IS Electronic Health Record-based']='P41587',['Number of Target Health care Facilities']='P41588',['unitLabel']='unitLabel',['Readout']='P41589',['Temporal character']='P41590',['Self-referencing']='P41591',['Patient cohort ']='P41592',['Sensitivity CAD-System']='P41593',['Specificity CAD-System ']='P41594',['Sensitivity Radiologist']='P41595',['Specificity Radiologist']='P41596',['Rise time']='P41597',['AUC without AI ']='P41598',['AUC with AI ']='P41599',['Imaging modality ']='P41600',['Chemical group']='P41601',['AUC (without artificial intelligence)']='P41602',['AUC (with artificial intelligence)']='P41603',['95% confidence interval (without AI)']='P41604',['95% confidence interval (with AI)']='P41605',['Ratiometric']='P41606',['vaccine name']='P41607',['Target antigen']='P41608',['Delivery Vehicle']='P41609',['Delivery Route']='P41610',['Phase']='P41611',['Related work']='P41612',['Link to research paper']='P41613',['Taxonomic learning']='P41614',['Validation tool']='P41615',['Timeline']='P41617',['Geo']='P41619',['Geonames']='P41621',['QUDT']='P41622',['qu']='P41623',['muo']='P41624',['OM']='P41626',['oldssn']='P41627',['om']='P41628',['vaem']='P41630',['dc']='P41631',['VANN']='P41632',['SKOS ontology']='P41633',['VANN ontology']='P41634',['dc ontology']='P41635',['vaem ontology']='P41636',['Goodrelations ontology']='P41637',['om ontology']='P41638',['oldssn ontology']='P41639',['ucum ontology']='P41640',['muo ontology']='P41641',['qu ontology']='P41642',['QUDT ontology']='P41643',['Geonames ontology']='P41644',['GeoSPARQL ontology']='P41645',['Geo ontology']='P41646',['Timezone ontology']='P41647',['Timeline ontology']='P41648',['OWL-Time ontology']='P41649',['Dcterms ontology']='P41650',['FOAF ontology']='P41651',['prov ontology']='P41652',['Schema ontology']='P41653',['DUL ontology']='P41654',['pretraining corpus']='P41655',['Testing corpus']='P41656',['Referenced as metadata']='P41658',['Sensors']='P41659',['Fieldwork']='P41660',['Outcomes']='P41661',['Techniques/Analysis']='P41662',['Ontology ID']='P41663',['Ontology IRI']='P41664',['Ontologies which have been used as referenced']='P41666',['Ontologies which have been used as imported']='P41667',['Ontologies which have been used as referenced as metadata']='P41668',['Gauge Factor (GF)']='P41669',['Strain range (%)']='P41670',['Nanomaterials']='P41671',['Sensitivity of the glucose sensor (mA/cm². mM)']='P41672',['limit of detection (mM)']='P41673',['Sensor Measurements']='P41674',['Minerals in consideration']='P41675',['Instruments']='P41676',['Raman laser used']='P41677',['Orthosilicate']='P41678',['silicate glasses']='P41679',['symmterical alumina tetrahedral network']='P41680',['[AlO4]-']='P41681',['Si-O-Si symmetric stretching']='P41682',['Antisymmetric Si-O stretching']='P41683',['Antisymmetric Mg-OH translation']='P41684',['Symmetric Mg-OH vibration']='P41685',['Supplements']='P41686',['Si-O-Si bending']='P41687',['Si-O-Si translation']='P41688',['Clinohumite']='P41689',['Ti-Clinohumite']='P41690',['two-layer chondrodite']='P41691',['sonolite']='P41692',['silicate norbergite']='P41693',['Mg2SiO4']='P41694',['Mg2SiO5']='P41695',['BO stretching vibrations']='P41696',['SiO apical stretching']='P41697',['ferroaxinite']='P41698',['OBO bending']='P41699',['ferroaxinite (FeO)']='P41700',['ferroaxinite (OH)']='P41701',['Joaquinite (OH)']='P41702',['Hypothesis type']='P41703',['Social-ecological processes']='P41704',['Focal entity']='P41705',['Behavioral traits']='P41706',['Phenological traits']='P41707',['Life history traits']='P41708',['Other Species Traits']='P41709',['Trait evolution']='P41710',['Niche shift']='P41711',['Abundance / density']='P41712',['Community composition']='P41713',['Species interactions']='P41714',['Habitat quality']='P41715',['Ecosystem functioning and services']='P41716',['Driver of change']='P41717',['Principles']='P41718',['Cities are dynamic']='P41719',['Cities are ecosystems']='P41720',['Cities are spatially heterogeneous']='P41721',['Ecological processes are still at work and are important in cities']='P41722',['Human and natural processes interact in cities']='P41723',['Relationships']='P41724',['Invasion biology']='P41725',['Climate change biology']='P41726',['Community and population ecology']='P41727',['Behavioral ecology']='P41728',['Biogeography']='P41729',['Evolutionary biology']='P41730',['Restoration/Conservation ecology']='P41731',['Genetics']='P41732',['Emission maximum (nm)']='P41733',['Membrane protein']='P41734',['Fusion protein']='P41735',['Cargo']='P41736',['Loading effeciency']='P41737',['In vitro effects']='P41738',['In vivo effects']='P41739',['Type of nanocarrier']='P41740',['Typical prefix']='P41741',['Output/Application']='P41742',['Therapeutic effects of the carrier']='P41743',['contribution:research_problem/Line broadening in plasmas/Research_objetive']='P41744',['paper:type']='P41745',['Atomic_property']='P41746',['Atomic_property/Isoelectronicity/type']='P41747',['Atomic_property/Ionization_state/type']='P41748',['Atomic_property/transitions/type']='P41749',['Spectroscopy_property']='P41750',['Spectroscopy_property/spectral_range/type']='P41751',['Plasma_property']='P41752',['Plasma_property/plasma_discharge/type']='P41753',['Comparison_to']='P41754',['Plasma_property/Te/value']='P41755',['Plasma_property/Te/unit']='P41756',['Plasma_property/Ne/value']='P41757',['Plasma_property/Ne/unit']='P41758',['Line broadening in plasmas/Research_objetive']='P41759',['Isoelectronicity/type']='P41760',['Ionization_state/type']='P41761',['transitions/type']='P41762',['spectral_range/type']='P41763',['plasma_discharge/type']='P41764',['Te/value']='P41765',['Te/unit']='P41766',['Ne/value']='P41767',['Ne/unit']='P41768',['properties']='P41769',['properties/Atomic_property/type']='P41770',['properties/Atomic_property/type/Isoelectronicity/type']='P41771',['properties/Atomic_property/type/Ionization_state/type']='P41772',['properties/Atomic_property/type/transitions/type']='P41773',['properties/Spectroscopy_property/type']='P41774',['properties/Spectroscopy_property/type/spectral_range/type']='P41775',['properties/Plasma_property/type']='P41776',['properties/Plasma_property/type/plasma_discharge/type']='P41777',['properties/Plasma_property/type/Te/value']='P41778',['properties/Plasma_property/type/Te/unit']='P41779',['properties/Plasma_property/type/Ne/value']='P41780',['properties/Plasma_property/type/Ne/unit']='P41781',['Surface functionalized with']={'P41782','P41783'},['research_problem/Line broadening in plasmas/Research_objetive']='P41784',['Properties/Atomic_properties/type']='P41785',['Properties/Atomic_properties/type/Isoelectronicity/value']='P41786',['Properties/Atomic_properties/type/Ionization_state/value']='P41787',['Properties/Atomic_properties/type/transitions/value']='P41788',['Properties/Spectroscopy_properties/type']='P41789',['Properties/Spectroscopy_properties/type/spectral_range/value']='P41790',['Properties/Plasma_properties/type']='P41791',['Properties/Plasma_properties/type/plasma_discharge/value']='P41792',['Properties/Plasma_properties/type/Te/value']='P41793',['Properties/Plasma_properties/type/Te/unit']='P41794',['Properties/Plasma_properties/type/Ne/value']='P41795',['Effect compared to non-functionalized nanoparticles']='P41796',['Efficiency compared to non-functionalized nanoparticles']='P41797',['research_problem/Line broadening in plasmas/Research_objetive*']='P41798',['Properties/Atomic_properties/type*']='P41799',['Properties/Atomic_properties/type/Isoelectronicity/value*']='P41800',['Properties/Atomic_properties/type/Ionization_state/value*']='P41801',['Properties/Atomic_properties/type/transitions/value*']='P41802',['Properties/Spectroscopy_properties/type*']='P41803',['Properties/Spectroscopy_properties/type/spectral_range/value*']='P41804',['Properties/Plasma_properties/type*']='P41805',['Properties/Plasma_properties/type/plasma_discharge/value*']='P41806',['Properties/Plasma_properties/type/Te/value*']='P41807',['Properties/Plasma_properties/type/Te/unit*']='P41808',['Properties/Plasma_properties/type/Ne/value*']='P41809',['Has R-value']='P41810',['Research_objetive']='P41812',['has transitions']='P41813',['Properties']='P41814',['described by']='P41816',['Linked Ontology']='P41818',['Epidemiological surveillance system purpose']='P41819',['Epidemiological surveillance process']='P41820',['Epidemiological surveillance users']='P41821',['Statistical analysis techniques']='P41822',['Epidemiological surveillance architecture']='P41823',['Epidemiological surveillance tool']='P41824',['Epidemiological surveillance software']='P41825',['Epidemiological surveillance approach']='P41826',['Epidemiological software development approach']='P41827',['Ontology domains']='P41828',['Bias (V)']='P41829',['Requirements Satisfied']='P41830',['Non-Requirements']='P41831',['Modules']='P41832',['implements']='P41833',['function']='P41834',['Documentation']='P41835',['Focus on']='P41836',['captures']='P41837',['Evaluated on']='P41838',['Photoresponsivity (A/W ) ']='P41839',['Quantum efficiency (%) ']='P41840',['Rise time (s)']='P41841',['Decay time (s)']='P41842',['also known as']='P41843',['trained for']='P41844',['applied on']='P41845',['Qualified by']='P41846',['Paper type']='P41847',['Research objective']='P41848',['Rules']='P41849',['Area']='P41850',['news headlines (HDL)']='P41851',['paper:caategory']='P41852',['Acronym_in_literature']='P41853',['Transitions']='P41854',['Ionization_state']='P41855',['Comparison to']='P41856',['Step 1']='P41857',['Step 2']='P41858',['scores']='P41859',['has system characteristics']='P41860',['Has measurement']='P41861',['Mobility (cm2 /V.s)']='P41862',['Subthreshold Swing (mV/dec)']='P41863',[' Threshold Voltage (V)']='P41864',['current ratio (Ion/Ioff)']='P41865',['Relation types']={'P41866','P41868','P41870'},['Popular methods']={'P41867','P41871'},['Data coverage']='P41872',['Annotation']='P41873',['Annotation details']='P41874',['Number of relations']='P41875',['Number of coreference links']='P41876',['Number of coreference clusters']='P41877',['Data domains']='P41878',['Contribution description']='P41880',['Study purpose']='P41881',['Components ']='P41882',['Issue(s) Addressed ']='P41883',['Technologies Deployed']='P41884',['Limit']='P41885',['Information Units']='P41886',['Number of sentences']='P41887',['teeeee']='P41888',['Symbol']='P41890',['Average sensibility']='P41891',['Average specificity']='P41892',['Average MAcc']='P41893',['Average F1-Score']='P41894',['Number of statements']='P41895',['Example statement']='P41896',['Donor']='P41897',['Acceptor']='P41898',['Energy band gap (eV)']='P41899',['LUMO']='P41900',['LUMO (eV)']='P41901',['HOMO (eV)']='P41902',['Mobility type']='P41904',['Mobility value (cm2/V.s)']='P41905',['CAS number']='P41906',['Mathematical model']='P41907',['Experimental validation of mathematical model']='P41908',['Mathematical model used In-silico study']='P41909',['In-vivo study']='P41910',['Theoretical guarantees']='P41911',['Robustness analysis']='P41912',['Class learning']='P41913',['Implemented technologies']='P41914',['Relationships learning']='P41915',['Instance learning']='P41916',['Taxonomy learning']='P41917',['Validation comment']='P41918',['Dataset URL']='P41919',['Link to the Dataset']='P41920',['foo']='P41921',['bar-baz']='P41922',['Amount of Questions']='P41923',['Question Types']='P41925',['Type of knowledge source']='P41927',['question type']='P41928',['Community QA']='P41929',['Average mixed layer depth (meter)']='P41930',['Material/Method']='P41931',['Prochlorococcus abundance (lower limit)']='P41932',['Prochlorococcus abundance (upper limit)']='P41933',['Synechococcus abundance (lower limit)']='P41934',['Synechococcus abundance (upper limit)']='P41935',['Picoeukaryotes abundance (lower limit)']='P41936',['Picoeukaryotes abundance (upper limit)']='P41937',['Abundance unit']='P41938',['Integrated Prochlorococcus abundance (lower limit)']='P41939',['Integrated Prochlorococcus abundance (upper limit)']='P41940',['Integrated Synechococcus abundance (lower limit)']='P41941',['Integrated Synechococcus abundance (upper limit)']='P41942',['Integrated Picoeukaryotes abundance (lower limit)']='P41943',['Integrated Picoeukaryotes abundance (upper limit)']='P41944',['Integrated abundance unit']='P41945',['Average integrated Prochlorococcus abundance']='P41946',['Average integrated Synechococcus abundance']='P41947',['Average integrated Picoeukaryotes abundance']='P41948',['Average integrated abundance unit']='P41949',['Abundance unit is different in paper']='P41950',['Volumetric primary production (upper limit)']='P41951',['Volumetric primary production unit']='P41952',['Depth integrated primary production (lower limit)']='P41953',['Depth integrated primary production (upper limit)']='P41954',['Depth integrated primary production unit']='P41955',['Volumetric primary production (lower limit)']='P41956',['Average primary production unit']='P41957',['Optical period (M3)']='P41958',['Data Level (M3)']='P41959',['No. of Tiles']='P41960',['Low-Ca pyroxene (nm)']='P41961',['high-Ca pyroxene (nm)']='P41962',['impact melt or melt breccias (nm)']='P41963',['Orthopyroxenes (nm)']='P41964',['Clinopyroxenes (nm)']='P41965',['Supplementary information']='P41966',['Fe-bearing Mg-rich spinel (nm)']='P41967',['Clinopyroxene pigeonite (nm)']='P41968',['Clinopyroxene pigeonite(nm)']='P41969',['Clinopyroxene augite (nm)']='P41970',['Chromite(nm)']='P41971',['diopside (high-Ca clinopyroxene)']='P41972',['diopside (high-Ca clinopyroxene) (nm)']='P41973',['Other datasets']='P41974',['Preprocesing']='P41975',['Chlorite (Ferrous)']='P41976',['Epidote(Ferrous)']='P41977',['Alunite (AL-OH)']='P41978',['Kaolinite (AL-OH)']='P41979',['Muscovite (Al-OH)']='P41980',['Biotite granodiorite gneiss(OH, tuff)']='P41981',['Ferrous']='P41982',['Ferric']='P41983',['Ferric/Ferrous']='P41984',['OH']='P41985',['FeO']='P41986',['Al-OH']='P41987',['Carbonate alteration zone']='P41988',['Source url']='P41989',['Number of unique triples']='P41990',['Number of tables']='P41991',['Number of binary relations']='P41992',['4-ary Relations']='P41993',['Number of 4-ary Relations']='P41994',['Number of words']='P41995',['Top three concepts']='P41996',['Concept Clustering']='P41997',['Filtering ']='P41998',['has value ']='P41999',['Has unit ']='P42000',['HOMO']='P42001',['Energy band gap']='P42002',['Open circuit voltage, Voc']='P42003',['Short-circuit current density, Jsc']='P42004',['Fill factor, FF']='P42005',['Power conversion efficiency']='P42006',['Has type ']='P42007',['Mobility value']='P42008',['Number of unique words']='P42009',['SPARQL query']='P42010',['Data formats']='P42011',['Technical challenges']='P42012',['Total tags']='P42013',['Semantic roles']='P42014',['Detection range (°C)']='P42015',['Sensitivity (nm/°C)']='P42016',['Amplification factor']='P42017',['Gas response (S=Ra/Rg)']='P42018',['Zeta potential (mV)']='P42019',['Skin model']='P42020',['Permeation flux']='P42021',['Permeation depth']='P42023',['Normalization types']='P42024',['Attribute types']='P42025',['Subset']='P42026',['combines']='P42027',['Programmed in']='P42028',['has Customer Interaction']='P43000',['Has Material Transaction']='P43001',['Has Market Interaction']='P43002',['has SCOR Metrics']='P43004',['Has Management Practices']='P43005',['Has Software Products']='P43006',['Has SC vs SC ']='P43009',['has business competence']='P43011',['has organization competence']='P43012',['has IS/IT competence']='P43013',['has (public) policy competence']='P43014',['has law competence']='P43015',['has other competence']='P43016',['has soft skills competences']='P43017',['has character traits ']='P43018',['Field of application']='P43019',['has analytical skills']='P43020',['has self-management skills']='P43021',['has other skills']='P43022',['Assessment of acquired knowledge']='P43023',['Models']='P43024',['Number of tokens']='P43025',['Has physical material interactions']='P43026',['Shows market interactions ']='P43027',['Contains standard description of process']='P43028',['Represents SCOR metrics']='P43029',['Has best-in-class management practices']='P43032',['Map of software products for best practices']='P43033',['Represent vertices']='P43034',['Represent edges']='P43035',['Consider various materials']='P43036',['Distinguish supply, demand']='P43037',['Has objective (o) or subjectivist (s) conceptualization']='P43038',['Represents SC vs SC']='P43039',['Has Host']='P43040',['Has mortality rate']='P43041',['Has virus variant']='P43043',['Has Virus']='P43044',['Has incidence']='P43045',['Has hospitation rate']='P43046',['Cover level of granularity strategic (S), tactical (T) and operational (O)']='P43047',['Follows methodological approach: inspiration (IS), induction (ID), deduction (D), synthesis (S), collaboration (C) and hybrid (H); evaluation (E)']='P43048',['Scope an organizational extent: internal (I), dyadic relationship (D), external (E), inter-business network (N)']='P43049',['Covers industry sector']='P43050',['Communicates a purpose']='P43051',['Offers an application']='P43052',['Advantage provided by the system']='P43055',['Limit of the system']='P43056',['tokenizer']='P43065',['General rules']='P43066',['Specific Rules']='P43067',['Number of unqiue entities']='P43068',['Belongs to material group']='P43069',['Has steps']='P43070',['Has manufacturing process']='P43071',['Uses variant']='P43072',['Input indicator']='P43073',['Process indicator']='P43074',['Output indicator']='P43075',['Outcome indicator']='P43076',['Impact indicator']='P43077',['has system qualities']='P43078',['has sub sub quality']='P43080',['has sub quality']='P43081',['Has method in related works']='P43082',['paper:author']='P43083',['paper: publication_year']='P43084',['paper:publised_in']='P43085',['Qual List']='P43086',['Ranking']='P43087',['Technology']='P43088',['Focus Group']='P43089',['Emergency Management Phase']='P43090',['paper: Theory / Concept / Model']='P43091',['paper:Study Type']='P43092',['Emergency Type']='P43093',['RQ']='P43094',['Type of Biosensor']='P43095',['Reference Electrode']='P43096',['LOD (µM)']='P43097',['has form']='P43098',['has functionality']='P43099',['Has health']='P43100',['has process']='P43101',['has time']='P43102',['has state']='P43103',['has environment']='P43104',['has miscellaneous qualitative']='P43105',['Type of cyclodextrin']='P43106',['decreases']='P43107',['Does not cause']='P43109',['increases']='P43110',['has solubility']='P43111',['increased in magnitude relative to']='P43112',['Ocular bioavailability']='P43113',['has ocular bioavailability']='P43114',['Has action duration']='P43115',['Professional and social networking opportunities']='P43116',['has X-ray string']='P43117',['Has Xray resource']='P43118',['has Xray string']='P43119',['has permeation']='P43120',['Has target group (learners)']='P43121',['Has learning objectives']='P43122',['Has location of use']='P43123',['Has learning activity']='P43124',['Uses didactics']='P43125',['Uses technological tools']='P43126',['has didactic process']='P43127',['Has application in']='P43128',['has installed photovoltaics capacity']='P43130',['has photovoltaics electricity generation']='P43131',['has installed onshore wind capacity']='P43132',['Has installed capacity']='P43133',['Has electricity generation']='P43134',['Has energy sources']='P43135',['has ion state']='P43136',['Has Atomic resource']='P43137',['hasGoal']='P43138',['has time frame']='P43139',['has disadvantages']='P43140',['has disadvantage']='P43141',['paper: Theory / Construct / Model']='P43142',['Conclusions']='P43143',['paper:key words']='P43144',['provides input for']='P43145',['simulates']='P43146',['Reactor']={'P43147','P180007'},['Conversion']='P43148',['Photocatalyst']='P43150',['Photocatalyst content']='P43151',['Incident light']='P43152',['Light intensity']='P43153',['Degraded substance']='P43154',['BET']='P43155',['Efficiency']='P43156',['After time']='P43157',['Field spectra']='P43158',['Techniques/Methods']='P43159',['Geothite']='P43160',['MgOH']='P43161',['(FeMg)OH']='P43162',['Talc']='P43163',['Kaolinite']='P43164',['Supplementary sources']='P43165',['halloysite']='P43166',['Fe-OH']='P43167',['Dolomite']='P43168',['Carbonates']='P43169',['Calcite']='P43170',['Clay']='P43171',['Kimberlite']='P43172',['Calcrete']='P43173',['Montmorillonite']='P43174',['Andesite']='P43175',['Hematite']='P43176',['Chlorite']='P43177',['White mica']='P43178',['Suuplimentary Information']='P43179',['Pyroxene']='P43180',['Olivine']='P43181',['Hydrated mineral']='P43182',['Hydroxylated silica']='P43183',['Molecular water']='P43184',['Fe/Mg-OH']='P43185',['Phyllosilicates']='P43186',['Fe (Chamosite)']='P43187',['Mg']='P43188',['Prehnite']='P43189',['Monohydrate']='P43190',['Sulfate']='P43191',['Hydrated silica']='P43192',['ankerite']='P43193',['serpentine']='P43194',['smectite']='P43195',['manganocalcite']='P43196',['Plagioclase']='P43197',['Supplimentary Information']='P43198',['Transfer']='P43199',['has result in QALD-9']='P43200',['Has result in LC-QuAD 1.0']='P43201',['Detection range (microstrain)']='P43202',['Sensitivity (pm/microstrain)']='P43203',['DNA sequencing technology']='P43204',['Zeolites']='P43205',['Actinolite']='P43206',['saponite']='P43207',['Sulfates']='P43208',['Kieserite']='P43209',['monohydrated sulfates']='P43210',['vermiculite clays']='P43211',['Frequency (MHz)']='P43213',['µef (cm2/ Vs)']='P43214',['Minimum bending (mm)']='P43215',['Channel length (nm)']='P43217',['Average Prochlorococcus abundance']='P43218',['Average Synechococcus abundance']='P43219',['Average Picoeukaryotes abundance']='P43220',['Average abundance unit']='P43221',['Thickness ']='P43222',['Size']={'P43223','P59090'},['Strain (%)']='P43224',['Error']='P43225',['Wavelength of maximum emission']='P43226',['Emission lifetime']='P43227',['Ground-state oxidation potential']='P43228',['Ground-state reduction potential']='P43229',['Excited-state oxidation potential']='P43230',['Excited-state reduction potential']='P43231',['Provide Answers']='P43232',['Provide Paraphrases']='P43233',['has viewpoint']='P43234',['Fidelity status']='P43235',['Temporal Integration']='P43236',['Meaured in']='P43237',['Measured in']='P43238',['Has entry']='HasEntry',['Has heading level']='HasHeadingLevel',['Tagging scheme']='P43239',['Annotators']='P43240',['https://github.com/harritaylor/torchvggish']='P43241',['References to articles inside ACL ARC']='P43242',['References to articles outside ACL ARC']='P43243',['Number of authors']='P43244',['distance from surface']='P43245',['Direction']={'P43246','P183148'},['has upper limit']='P43247',['has lower limit']='P43248',['Has pipeline']='P43249',['has reproducibility']='P43250',['key insights']='P43251',['Has dielectric constant']='P44000',['Ozone concentration']='P44001',['Measured at temperature']='P44002',['Decomposition rate']='P44003',['Has effect']='P44004',['Decomposition rate constant']='P44005',['Extinction coefficient']='P44007',['At wavelength']='P44008',['Heat of ozone dissolution']='P44009',['has value range']='P44010',['Has measurement value']='P44011',['Has measurement method']='P44012',['Viewpoint']='P44013',['has fidelity status']='P44014',['has Temporal Integration']='P44015',['Data management']='P44016',['Visualization']='P44017',['Situational Awareness']='P44018',['Planning and Prediction']='P44019',['Integration and Collaboration']='P44020',['is measured in']='P44022',['has previois step']='P44023',['has previous step']='P44024',['has next step']='P44025',['starts with']='P44026',['ends with']='P44027',['Variables ']={'P44028','P44029','P44030','P44031','P44032','P44033'},['affects']={'P44036','AFFECTS'},['associated with']='ASSOCIATED_WITH',['augments']='AUGMENTS',['causes']='CAUSES',['coexists with']='COEXISTS_WITH',['compared with']={'COMPARED_WITH','P71197'},['complicates']='COMPLICATES',['converts to']='CONVERTS_TO',['diagnoses']='DIAGNOSES',['different from']={'DIFFERENT_FROM','P71198'},['disrupts']='DISRUPTS',['has mesh']='HAS_MESH',['higher than']='HIGHER_THAN',['inhibits']='INHIBITS',['location of']={'LOCATION_OF','DUO:RO_0001015'},['manifestation of']='MANIFESTATION_OF',['occurs in']='OCCURS_IN',['precedes']='PRECEDES',['predisposes']='PREDISPOSES',['prevents']='PREVENTS',['stimulates']='STIMULATES',['treats']='TREATS',['mentioned in']='MENTIONED_IN',['isa']='ISA',['administered to']='ADMINISTERED_TO',['N2O flux (lower limit)']='P44037',['N2O flux (upper limit)']='P44038',['N2O flux unit']='P44039',['Average surface saturation of N2O (percent)']='P44040',['Average N2O flux']='P44041',['Average N2O flux unit']='P44042',['Surface saturation of N2O (percent) (lower limit)']='P44043',['Surface saturation of N2O (percent) (upper limit)']='P44044',['Unit is different in paper']='P44045',['Surface N2O (nM) (lower limit)']='P44046',['Surface N2O (nM) (upper limit)']='P44047',['Average surface N2O (nM)']='P44048',['Application area']='P44049',['Data Duration']='P44050',['Mg-Orthopyroxene']='P44051',['Low calcium Pyroxene (LCP)']='P44052',['High Calcium Pyroxene (HCP)']='P44053',['Datasets']='P44054',['Softwares']='P44055',['Field survey']='P44056',['Features classified']='P44057',['SAM Accuracy (%)']='P44058',['Supplementry Information']='P44059',['has result']='HAS_RESULT',['Type of etching mixture']='P44060',['Primary etching solution']='P44061',['Miller index']='P44062',['Etching rate']='P44063',['Measured in conditions']='P44064',['Type of etching']='P44065',['Has concentration']={'P44066','P44067'},['Carrier for hot melt extrusion']='P44068',['Official dissolution media (USP 40)']='P44069',['Dissolution Conditions']='P44070',['Average CO2 flux']='P44071',['Average CO2 flux unit']='P44072',['Unit of CO2 flux is different in paper']='P44073',['CO2 flux (lower limit)']='P44074',['CO2 flux (upper limit)']='P44075',['CO2 flux unit']='P44076',['Volumetric dark C fixation (lower limit)']='P44077',['Volumetric dark C fixation unit']='P44078',['Average dark C fixation']='P44079',['Average dark C fixation unit']='P44080',['Dark C fixation unit is different in paper']='P44081',['Volumetric dark C fixation (upper limit)']='P44082',['Depth integrated dark C fixation (lower limit)']='P44083',['Depth integrated dark C fixation (upper limit)']='P44084',['Depth integrated dark C fixation unit']='P44085',['tip diameter of Microneedles']='P44086',['standard deviation']={'P44087','P71159'},['basal diameter of Microneedles']='P44088',['Total height of Microneedles']='P44089',['Insulin loaded height of Microneedles']='P44090',['Microneedles structure']='P44091',['Insulin content (mIU / needle)']='P44092',['Sign']='P44093',['Dose']='P44094',['Pharmacokinetic data']='P44095',['peak insulin concentration (Cmax)']='P44096',['Time to peak insulin concentration']='P44097',['Relative bioavailability compared with subcutaneous injection']='P44098',['Minimum glucose level (Cmin)']='P44099',['Time to minimum glucose level (Tmin)']='P44100',['Relative pharmacological availability compared to subcutaneous injection']='P44101',['Time to peak insulin concentration (Tmax)']='P44102',['Melting temperature']='P44103',['Glass-transition temperature']='P44104',['Crystallinity']='P44105',['Life span']='P44106',['minimum']='P44107',['maximum']='P44108',['Minimum time']='P44109',['Maximum time']='P44110',['has melting temperature']='P44111',['Has glass-transistion temperature']='P44112',['Has crystallinity']='P44113',['Has life span']='P44114',['has material form']='P44115',['Has molecular weight']='P44116',['Enzyme']='P44117',['Experimental conditions']='P44118',['Temperature']='P44119',['Performed at temperature']='P44120',['Processing time']='P44121',['how much']='P44122',['Sensing element nanomaterial']='P44123',['Operating temperature ( ºC)']='P44124',['Type of gas']='P44125',['Measuring concentration (ppm)']='P44126',['Recycling']='P44127',['Recycling type']='P44128',['Device Location']='P44129',['language model']='P44132',['Used to predict probabilities to word classes over the whole vocabulary.']='P44133',['Used to predict probabilities to both word classes and members of the class vocabulary.']='P44134',['Evaluates how the benefit of working with smaller vocabularies for numbers and geographic locations']='P44135',['uses Micro-Models']='P44136',['separates the predicted numbers and words']='P44137',['Grammar']='P44138',['question']={'P44139','P111012'},['Knowledge Base']='P44140',['Formal Language']='P44141',['Answers']='P44142',['Paraphrases']='P44143',['Processing heuristics']='P44144',['Task name']='P44145',['Best score']='P44146',['Entity types']='P44148',['Number of mentions']='P44149',['Data format']='P44150',['Best method']='P44151',['Number of articles']='P44152',['Tool name']='P44153',['Supported programming languages']='P44154',['Supported functions']='P44155',['Supported natural languages']='P44156',['Learner Features']='P44157',['Annotation guidelines']='P44158',['inter-annotator agreement']='P44159',['Step 2.1']='P44160',['Step 2.1.1']='P44161',['Coarse-grained Entity types']='P44162',['Has theory']='P44163',['Has project']='P44164',['Event / Relation Types']='P44165',['Primary argument']='P44166',['Secondary arguments']='P44167',['Number of events']='P44168',['Number of proteins']='P44169',['Number of modifications']='P44170',['Number of core entities']='P44171',['Coreferences']='P44172',['Number of paragraphs']='P44174',['Number of Identity Chains']='P44175',['Number of discontinuous mentions']='P44176',['RDoC construct']='P44177',['has experimental results']='P44178',['Has simulation results']='P44179',['Number of documents']='P44180',['Jia and Zhang 2020 + DAPT (Span-level & Integrated)']='P44181',['Baseline score']='P44182',['Source domain']='P44183',['Target domains']='P44184',['Directly Fine-tune']='P44185',['Pre-train then Fine-tune']='P44186',['Jointly train']='P44187',['Number of training documents']='P44188',['Number of development documents']='P44189',['Number of test documents']='P44190',['Number of images']={'P44191','P44198','P44205'},['Has ontology']={'P44195','P44202','P44209'},['Has nodes']={'P44196','P44210'},['Has subset']='P44212',['Number of nodes']='P44213',['Number of leaf nodes']='P44214',['Annotation scheme']={'P44215','P181036'},['Annotation theme']='P45000',['Annotation format']='P45001',['Ontology used']='P45002',['subcategories']='P45003',['Licensing']='P45004',['sub-relations']='P45008',['Ontologies used']='P45009',['Annotation approach']='P45010',['sub-event/relations']='P45011',['shared task']='P45012',['Number of complexes']='P45013',['super domain']='P45014',['Bacteria extraction']={'P45015','P45019','P45023','P45027'},['Cellular component extraction']={'P45016','P45020','P45024','P45028'},['Biological Process extraction']={'P45017','P45021','P45025','P45029'},['Molecular function extraction']={'P45018','P45022','P45026','P45030'},['Top-1 Accuracy (VisE-Bing)']='P45031',['Dataset download url']='P45032',['Event types']='P45033',['Number of training data mentions']='P45035',['Number of development data mentions']='P45036',['Number of test data mentions']='P45037',['Number of training data events']='P45038',['Number of test data events']='P45039',['Number of development data events']='P45040',['Number of training data relations']='P45041',['Number of development data relations']='P45042',['Number of test data relations']='P45043',['has addition to']='P45044',['Slot error rate']='P45046',['Dataset type']='P45047',['Data source timestamp']='P45048',['Fine-grained Entity types']='P45049',['Number of fine-grained entity types']='P45050',['Annotation type']='P45051',['Exact match']='P45053',['Token match']='P45054',['Named entity']='P45055',['Number of entity types']='P45056',['gold-standard corpora']='P45057',['Silver-standard corpora']='P45058',['has aligned entities']='P45059',['Number of training sentences']='P45060',['Number of development sentences']='P45062',['Number of test sentences']='P45064',['Number of identifiers']='P45066',['Coarse-grained Entity type']='P45067',['Fine-grained Entity type']='P45068',['Supported natural language']='P45069',['Software entity types']='P45071',['Equipment']='P45072',['quantityValue']='P45073',['hasQuantityKind']='P45074',['numericValue']='P45075',['Producer']='P45077',['Guide']='P45078',['Guideline']='P45079',['programmingEnvironment']='programmingEnvironment',['softwareConference']='softwareConference',['application']='application',['plugin']='plugin',['operatingSystem']='operatingSystem',['alternativeName']={'alternativeName','P45083'},['abbreviation']={'abbreviation','P45085'},['License']='license',['citation']={'citation','P45087'},['extension']={'extension','P45089'},['Release']='release',['developer']={'developer','P45091','wikidata:P178'},['softwareType']={'softwareType','P45094'},['has accuracy']='P45080',['qudt:ucumCode']='P45081',['applied']='P45082',['specification']={'specification','P45093'},['license']={'P45086','SCHEMAORG:license','P184075','P184108','P184133','P184158','P186030','P186067'},['release']='P45090',['plugIn']='P45092',['deposits']='P45097',['video']={'P45098','SCHEMAORG:video','wikidata:P10'},['representation']='P45099',['interactionType']='P45100',['audience']='P45101',['individual']='P45102',['virtual']='P45103',['physical']='P45104',['Asynchronous']='P45105',['Synchronous']='P45106',['Introduced in']='P45107',['Number of questions']='P45108',['Number of training passages']='P45109',['Number of test passages']='P45110',['Number of development passages']='P45111',['surveyed neural architecture types']='P45112',['surveyed NER architecture types']='P45113',['Result Geographic Location']='P45114',['Results Number Word Classes']='P45115',['Results Geographic word Classes']='P45116',['Results Geographics Location Word Classes']='P45117',['NLP tasks']='P45118',['production']='P45119',['applicable Unit']='P45120',['Experiment setting']='P45121',['Experiment environment setting']='P45122',['Engine']='P45123',['Triple Table']='P45124',['Quad Table']='P45125',['Vertical Partitioning']='P45126',['Property table']='P45127',['Matrix-based']='P45129',['Triple']='P45130',['Quad']='P45131',['Property']='P45133',['Navigational']='P45134',['Join']='P45135',['Structural']='P45136',['Pairwise']='P45137',['Multiway']='P45138',['Number of distinct relations']='P45139',['Worst case optimal']='P45140',['Linear algebra']='P45141',['Relational']='P45142',['Query rewriting']='P45143',['Distinct relation types']='P45144',['training data size']='P45145',['test data size']='P45146',['ontologylearningsource']='P45147',['ontology learning approach']='P45148',['origin']='P45150',['has Process areas']='P45151',['has maturity levels']='P45152',['has application framework']='P45154',['Used Technique']='P45155',['used datasets']='P45156',['is anonymized']='IsAnonymized',['Theoretical background']='P46000',['Sample characteristics']='P46001',['contextualization']='P46002',['Country ']='P46004',['study year']='P46005',['mean']='P47000',['study_design']='P47001',['statistical_methods']='P47002',['open_access_medium']='P47003',['research_field_investigated']='P47004',['country_investigated']='P47005',['video type']='P47006',['video URL']='P47008',['round-trip time']='P47009',['LossMethod']='P47012',['round-trip time (average)']='P47013',['round-trip time (average millisecond)']='P47014',['round-trip time (average ms)']='P47015',['round-trip time (average) millisecond']='P47016',['round-trip time (std) ms']='P47017',['round-trip time (std) millisec']='P47018',['motion-to-photon (average) millisec']='P47019',['motion-to-photon (std) millisec']='P47020',['peak signal-to-noise ratio (average) dB']='P47021',['peak signal-to-noise ratio (std) dB']='P47022',['network']='P47023',['playability']='P47024',['payability']='P47025',['round-trip time (average) millisec']='P47026',['visual quality']='P47027',['subject']={'P47028','P110024'},['Subject Label']='P47029',['Subject ID']='P47030',['Relationship']='P47031',['Object']='P47032',['Object ID']='P47033',['maxValue']='P47034',['minValue']='P47035',['Industrial Energy Loadprofile']='P47036',['Method of dependencies modeling']='P48000',['Method of dependencies extraction']='P48001',['Dynamic']='P48002',['Multi-actor consideration']='P48003',['Type of considered dependencies']='P48004',['Location']='P48005',['Time preiod']='P48006',['Time period for data collection']='P48007',['Duration of use the AR app']='P48008',['code repository']='P49000',['runtime platform']='P49001',['target product']='P49002',['application category']='P49003',['application sub category']='P49004',['download url']='P49005',['install url']='P49006',['memory requirements']='P49007',['permissions']='P49008',['processor requirements']='P49009',['release notes']='P49010',['software help']='P49011',['software requirements']='P49012',['software version']='P49013',['storage requirements']='P49014',['supporting data']='P49015',['contributor']='P49016',['copyright holder']='P49017',['copyright year']='P49018',['creator']={'P49019','SCHEMAORG:creator','wikidata:P170'},['date created']='P49020',['date modified']='P49021',['date published']='P49022',['file format']={'P49024','wikidata:P2701'},['provider']='P49025',['sponsor']={'P49026','wikidata:P859'},['is accessible for free']='P49027',['is part of']='P49028',['position']='P49029',['name']={'P49030','SCHEMAORG:name','CSVW_Name','wikidata:P2561','P184117'},['related link']='P49031',['given name']='P49032',['family name']='P49033',['Interoperability']='P49034',['Data aquisition']='P49035',['Dependencies consideration']='P49036',['Dependencies management']='P49037',['Heterogeneity consideration']='P49038',['Exposed services']='P49039',['Consumed services']='P49040',['Intercation within the physical environment']='P49041',['Environmental intercations']='P49042',['Application interactions']='P49043',['Data access modality']='P49044',['software suggestions']='P49045',['maintainer']='P49046',['cont integration']='P49047',['build instructions']='P49048',['development status']='P49049',['embargo date']='P49050',['funding']='P49051',['issue tracker']='P49052',['reference publication']='P49053',['readme']='P49054',['Hardware platform']='P49055',['Software platform']='P49056',['Best machine learning or deep learning approach/algorithm']='P49057',['Performance metrics']='P49059',['Filler material']='P49060',['Polymer material']='P49061',['Water barrier properties ']='P49062',['Oxygen barrier properties']='P49063',['water barrier conditions']='P49064',['oxygen barrier conditions']='P49065',['Coating thickness']='P49066',['Coating substrate']='P49067',['Fabrication method']='P49068',['Prediction accuracy results']='P49069',['Oxygen barrier properties, cm3 m−2 day−1 bar−1']='P49070',['Water barrier properties, g m−2 day−1']='P49071',['Coating thickness, micrometers']='P49072',['higher confidence limit']='P49073',['animal']='P49074',['Intrusion Detection Type']='P49075',['Training Requirement']='P49076',['Attack Type']='P49077',['Optimization criteria']='P49078',['Optimization function']='P49079',['peer-reviewed']='P49080',['target population']='P49081',['geographical coverage']='P49082',['academic disciplines']='P49083',['has negative association with']='P49084',['Total Frames extracted']='P50000',['Key frames extracted']='P50001',['levels names']='P52000',['ISO/ IEC 15504']='P52001',['Number of levels']='P52002',['record identifier']='P52003',['test year']='P52004',['age']={'P52005','P59214'},['Excercise']='P52006',['Scalability Framework']='P52007',['multi modal feature handling']='P52008',['Result Semantification']='P52009',['Explainable Results']='P52010',['Software Resource Link']='P52011',['Probabilistic Similarity Approach']='P52012',['has levels']='P52013',['has attribute']='P52014',['attributes number']='P52015',['Maturity Definition']='P52016',['Practicality']='P52017',['Calorie-annotated recipe']='P52018',['Data source content']='P52019',['Number food category']='P52020',['Evaluation data size']='P52021',['Absolute error']='P52022',['Relative error']='P52023',['Relative error (%)']='P52024',['Absolute error (kcal)']='P52025',['Number of food recipe']='P52026',['standard error']='P52027',['testing data size']='P52028',['Validation data size']='P52029',['Machine learning framework']='P52030',['Relative error (kcal)']='P52031',['Protein']='P52032',['Fat']='P52033',['Carbohydrates']='P52034',['Construction of food photo dataset']='P52035',['Number of classes']='P52036',['Association']='P52038',['Language model vocabulary']='P52039',['Vocabulary Size']='P52040',['has text']='P52041',['Phase of pandemic']='P53000',['instance of']={'P54000','wikidata:P31'},['eats']='P54001',['Method resolution']='P54002',['Economic aspect']='P54003',['Environemental aspect']='P54004',['Social aspect']='P54005',['E-waste management']='P54006',['Direct logistic']='P54007',['Reverse logistic']='P54008',['indirectly negatively regulates quantity of']='P54009',['Cap-and-trade policy ']='P54010',['Publish year']='P54011',['directly negatively regulates quantity of']='P54012',['publish in the journal']='P54013',['Journal impact factor']='P54014',['Inventory model']='P54015',['Number of echelon']='P54016',['Sustainability factor']='P54017',['Objective fucntion']='P54018',['Decision variable']='P54019',['Production energy consumption function']='P54020',['Dataset Sample Size']='P54021',['2nd Dateset Size']='P54022',['1st Dataset Sample Size']='P54023',['2nd Dataset Sample Size']='P54024',['1st dataset Testing Size']='P54025',['1st Dataset Training Size']='P54026',['2nd Dataset url']='P54027',['self-healing']='P54028',['Bacteria (concentration )']='P54029',['Nutrition broth +food']='P54030',['Immobilizer material /polymer']='P54031',['Focus/concept']='P54032',['Future reccomendation']='P54033',['Missing values']='P54034',['mass media analysis']='P55000',['critical theory']='P55001',['psychoanalysis']='P55002',['semiotics']='P55003',['Attributes Count']='P55004',['Domain Name']='P55005',['Levels Count']='P55006',['Maturity has Definition']='P55007',['Maturity has Levels']='P55008',['Practicability']='P55009',['automatic data mapping']='P55010',['no need to learn query language']='P55011',['no need to write queries']='P55012',['automatic generation of domain objects']='P55013',['semantic data support']='P55014',['Submodels']='P55019',['Experimental tool']='P55020',['package']='P55021',['Hardware configuration']='P55022',['count']='P55023',['cores']='P55024',['speed']='P55025',['Workload taxonomy']='P55026',['has research paradigm']='P55027',['Query Text']='P55028',['Number of triple patterns']='P55029',['Number of files']='P55030',['contains triangular pattern']='P55031',['Number of peers']='P55032',['external validity']='P55034',['internal validity']='P55035',['conclusion validity']='P55036',['construct validity']='P55037',['hidden in text']='P55038',['highlighted in text']='P55039',['Has published']='P56000',['influencing factor']='P56001',['Online published']='P56002',['controls']='P56003',['gender']='P56004',['seniority']='P56005',['region']='P56006',['claim causality']='P56007',['observation type']='P56009',['observation number']='P56010',['type study']='P56011',['survey type']='P56012',['population']={'P56013','wikidata:P1082'},['gross sample']='P56014',['response rate']='P56015',['start field phase']='P56016',['end field phase']='P56017',['causality representation']='P56018',['causality acquisition method']='P56019',['causality inference method']='P56020',['explanation extraction method']='P56021',['explanation ranking method']='P56022',['explanation evaluation']='P56023',['explanation personalization']='P56024',['event detection method']='P56025',['academic discipline']='P56026',['influencing factor description']='P56027',['association description']='P56028',['outcome description']='P56029',['controls description']='P56030',['target population description']='P56031',['data collection method description']='P56032',['observation type description']='P56033',['background empirical evidence']='P56034',['background theory']='P56035',['theory description']='P56036',['data source description']='P56037',['Prop 1']='P56038',['Prop 2']='P56039',['Prop 3']='P56040',['data-driven approach']='P56041',['loading time']='P56042',['inferential statistics']='P56043',['hypothesis testing']='P56044',['regression analysis']='P56045',['hypothesis statement']='P56046',['descriptive analysis']='P56047',['descriptive statistics']='P56048',['measures of frequency']='P56049',['percent']='P56050',['has constraints']='P56051',['Type of considered system']='P56052',['Measurement noise']='P56053',['Process noise']='P56054',['subquestion']='P57000',['exploratory question']='P57001',['research paradigm']='P57003',['research question answer']='P57004',['measures of central tendency']='P57005',['median']='P57006',['measures of dispersion or variation']='P57008',['variance']='P57009',['measures of position']='P57010',['percentile rank']='P57011',['quartile rank']='P57012',['thematic analysis']='P57013',['content analysis']='P57014',['grounded theory']='P57015',['machine learning']='P57016',['classification type']='P57017',['between subject']='P57018',['within subject']='P57019',['action research']='P57020',['secondary research']='P57021',['has_name']='P57022',['open_access_models']='P57023',['Indicator']='P57024',['result_detail']='P57025',['Key Scheme']='P57026',['Traffic Effect']='P57027',['Encryption Type']='P57028',['scientific_block_compared']='P57029',['Average']='P57030',['Lowest']='P57031',['Highest']='P57032',['World region']='P57033',['interview']='P57034',['question number']='P57035',['survey']='P57036',['qualitative ']='P57038',['quantitative ']='P57039',['study']='P57040',['In Original Query']='P57041',['First Run of Optimization']='P57042',['has triplestore']='P57043',['Q1 has Value']='P57044',['Q3 has Value']='P57045',['Q7 has Value']='P57046',['has cost model']='P57047',['Against PDStore']='P57048',['Against RDF-3X']='P57049',['Against BitMat']='P57050',['Against Triplerush']='P57051',['Q2 has Value']='P57052',['Q4 has Value']='P57053',['Q5 has Value']='P57054',['Q6 has Value']='P57055',['Has predictors']='P57056',['period of data collection']='P57057',['has yearly pattern']='P57058',['has daily pattern']='P57059',['has weekly pattern ']='P57060',['variables used']='P57061',['is larger than']='P57062',['association with cycling trips']='P57063',['on cycling trips']='P57064',['is particularly strong deterrent for ']='P57065',['deterrents to cycling']='P57066',['daily variations']='P57067',['has influence on ']='P57068',['is plural of']='P57069',['is explained in']='P57070',['has turning point at ']='P57071',['on weekdays']='P57072',['on weekends']='P57073',['negative effect for ']='P57074',['male adult human']='P57075',['increase of ridership']='P57076',['decrease of ridership']='P57077',['is measured in ']='P57078',['R189274']='P57079',['R189276']='P57080',['R189278']='P57081',['R189280']='P57082',['R189282']='P57083',['R189284']='P57084',['R189286']='P57085',['is calculated from']='P57086',['mean values are calculated from']='P57087',['Predictor variable']='P57088',['Target variable']='P57089',['is described by']='P57090',['operates on']='P57091',['Crosslinker']='P57092',['Binder']='P57093',['strength (MPa)']='P57094',['Modulus (GPa)']='P57095',['Toughness (MJ/m3)']='P57096',['targets']='P57097',['False Negative Rate']='P57098',['data analysis method']={'P57099','P76003'},['mentions']={'P57100','mentions'},['has number of classes']='P57101',['beginning']='P57102',['end']='P57103',['hypothesis supported']='P57105',['patient age']='P57106',['COVID-19 patients with gastrointestinal symptoms']='P57107',['Test-Data Languages']='P58000',['1st Dataset']='P58001',['2nd Dataset']='P58002',['1st Dataset Precision']='P58004',['1st Dataset Size']='P58006',['2nd Dataset Size']='P58007',['1st Dataset Accuracy']='P58009',['2nd Dataset Accuracy']='P58010',['2nd Dataset Recall']='P58012',['2nd Dataset Precision']='P58013',['2nd Dataset F1-score']='P58014',['3rd Dataset F1-score']='P58015',['1st Dataset Recall']='P58018',['1st Dataset F1-score']='P58019',['Accuracy']={'P58020','P71081'},['Fake News']={'P58021','P67038'},['Real News']={'P58022','P67037'},['PloitiFact']='P58023',['Rea News']='P58024',['Tweets']='P58027',['Retweets']='P58028',['Replies']='P58029',['F1 entity level']='P58033',[' Macro F1 word-level']='P58034',['Micro F1']='P58035',['Young Modulus']='P58036',['buffered reads']='P58037',['Universities']='P58038',['Real Accounts']='P58039',['SpamBots']='P58040',['Fake Followers']='P58041',['Spam Acount']='P58042',['Spam Accounts']='P58043',['delete']='P58044',['False Positive']='P58045',['False Positive Rate']='P58046',['has number of instances']='P58048',['associated with project']='P58049',['availableIn']='P58051',['accessible online']='P58052',['used in project']='P58053',['available in']='P58054',['online accessible']='P58055',['has domain']='P58056',['plpl']='P58057',['Logistic Regression']='P58058',['Random Forest']='P58059',['Support Vector Machine (SVM)']='P58060',['no of object properties']='P58061',['no of data properties']='P58062',['Matthews Correlation Coefficient (MCC)']='P58063',['Supervised Learning Problem Type']='P58064',['Data Scaling Type (normalization method)']='P58066',['Data scaling (normalization method)']='P58067',['Performance measurment']='P58068',['Algorithm used']='P58069',['Supervised learning']='P58070',['Limiation']='P58071',['Datasets used']='P58072',['The research problem']='P58073',['Algorithm(s) used']='P58074',['Application field(s)']='P58075',['Limiations']='P58076',['Strong points of the research']='P58077',['Research weak point(s)']='P58078',['Number of machine learning algorithms']='P58079',['Number of application fields']='P58080',['Number of performance measures']='P58081',['Publons ID']='P58082',['Web of science ResearcherID']='P58083',['Scopus']='P58084',['MyScienceWork']='P58085',['Semantic Scholar']='P58086',['conclusion(s)']='P58087',['Social Spam Bot #1']='P58088',['Social Spam Bot #2']='P58089',['Social Spam Bot #3']='P58090',['Traditional Spam Bot']='P58091',['Fake Account']='P58092',['Fake Accounts']='P58093',['Encryption']='P58094',['hash']='P58095',['key']='P58096',['replay protection']='P58097',['Number of network echelons']='P58098',['Multi-objective approach']='P58099',['Multiple periods']='P58100',['Multiple products']='P58101',['Multiple transportation modes']='P58102',['Capacitated facilities']='P58103',['Multiple facilities in each echelon']='P58104',['case study']='P58105',['has published in']='P58106',['Solution approach']='P58107',['Applicable flow pattern']='P58108',['Applicable condition']='P58109',['Drawbacks']='P58110',['Function ']='P58111',['Accuracy (%)']='P58112',['1st Dataset training/test url']='P58114',['Total number of Accounts']='P58115',['Bagging']='P58116',['JRip']='P58117',['J48']='P58118',['True Positive rate']='P58120',['ROC area']='P58121',['Precision-Recall Curve (PRC) area']='P58122',['Receiver Operating Characteristic (ROC) area']='P58123',['Correctly classified instance']='P58124',['Environemental control']='P58125',['ExperimentExperimental data']='P58126',['# of Recordings']='P59000',['In Use']='P59001',['Topology Authentication']='P59002',['Path Authentication']='P59003',['Origin Authentication']='P59004',['Positive']='P59006',['Negative']='P59007',['Neutral']='P59008',['Solid Use Case']='P59009',['Enterprise Environment']='P59010',['Prediction accuracy results (%)']='P59011',['Wordbags']='P59012',['Dataset Training Size']='P59013',['Dataset Testing Size']='P59014',['Proposed model']='P59015',['Dataset Validation Size']='P59016',['Attack Goal']='P59017',['Cost per Click (CPC)']='P59019',['Cost per impression Mile (CPM)']='P59020',['Cost per Action (CPA)']='P59021',['Attack Target']='P59022',['Proposed model architecture']='P59023',['Positive Predictive Rate']='P59024',['Negative Predictive Rate']='P59025',['body parts']='P59026',['publication month']='P28',['publication year']='P29',['contribution']='P31',['research problem']='P32',['material']={'MATERIAL','P156014','P180038'},['doi']='P26',['has research problem']='P59028',[' Accuracy results (Prediction %)']='P59029',['Percent change from pre-pandemic WVC rates']='P59030',['Mean WVC Krakow']='P59032',['Mean WVC 2019']='P59033',['Mean WVC 2020']='P59034',['Mean WVC 2019 Non-lockdown']='P59035',['Mean WVC 2019 Lockdown period']='P59036',['Mean WVC 2019 Non-lockdown period']='P59037',['Mean WVC 2020 Lockdown period']='P59038',['Mean WVC 2020 Non-lockdown period']='P59039',['Mean number of WVC per month 2019 Lockdown period']='P59040',['Mean number of WVC per month 2019 Non-lockdown period']='P59041',['Mean number of WVC per month 2020 Lockdown period']='P59042',['Mean number of WVC 2020 Non-lockdown period']='P59043',['authorization method']='P59044',['Images dimensions']='P59045',['Data augmentation technique']='P59046',['Time Complexity Analysis']='P59047',['low result']='P59048',['high result']='P59049',['Automatically evaluating machine-translated text']='P59050',['system information']='P59051',['Industry 4.0 technology']='P59052',['Discused Supply Chain Resiliences antecedents']='P59053',['Refered Supply chain resiliences phases']='P59054',['Experimental data']='P59055',['Real locations']='P59056',['regularity analysis']='P59057',['comparative analysis']='P59058',['triangulation']='P59059',['category analysis']='P59060',['coding']='P59061',['semantic analysis']='P59062',['skewness']={'P59063','wikidata:P10744'},['kurtosis']='P59064',['boxplot']='P59065',['roc auc']='P59066',['predicate_1']='P59067',['predicate_2']='P59068',['predicate_3']='P59069',['architecture']='P59070',['bus width']='P59071',['Overall effect of COVID-19 lockdowns on WCV']='P59072',['Taktfrequenz']='P59073',['sentiment analysis']='P59074',['unit conversion result']='P59075',['Has Links']='P59077',['used method']='P59078',['Has Relations']='P59079',['Percent change from pre-pandemic mortality rates']='P59080',['Overall effect of COVID-19 lockdowns on mammal road mortality']='P59081',['Percent change from pre-pandemic road mortality rates']='P59082',['Problem domain']='P59084',['Multi-Suppliers']='P59085',['Multi-customers']='P59086',['Multi scenario']='P59087',['Parser ']='P59088',['evaluation method']='P59089',['Corpus name']='P59091',['Compilation method']='P59092',['Availability']='P59093',['in-depth analysis']='P59094',['behavioural analysis']='P59095',['Cost Effectiveness']='P59096',['Backward Compatibility']='P59097',['Repair and Maintenance']='P59098',['Overhead']='P59099',['authentication method']='P59101',['session']='P59102',['ontology component']='P59103',['ontology module']='P59104',['axioms count']='P59105',['rules count']='P59106',['Is contextual']='P59107',['F_β -score']='P59108',['reliability']='P59109',['stakeholder analysis']='P59110',['has architecture']='P59111',['has number of layers']='P59112',['has transformer blocks']='P59113',['hidden layer size']='P59114',['hidden size']='P59115',['self attention heads']='P59116',['total parameters']='P59117',[' number of self-attention heads']='P59118',['base model']='P59119',['Number of annotators']='P59120',['individual count']='P59122',['properties count']='P59123',['domain knowledge']='P59124',['people involved']='P59125',['literature analysis']='P59126',['Discourse structure']='P59127',['Audio encoder']='P59128',['Text encoder']='P59129',['Video encoder']='P59130',['Fusion dimensions']='P59131',['Media Type']='P59132',['Storage']='P59133',['Github link']='P59134',['terms count']='P59135',['type of software']='P59136',['f-score']='P59137',['ddasdasdd']='P59138',['aligned to']='P59139',['aligned with']='P59140',['Number of topics']='P59142',['Number of Tweets']='P59143',['Start date']='P59144',['End date']='P59145',['Feature learning channel']='P59146',['sample size unit']='P59149',['additional data']='P59153',['Network architecture type']='P59154',['Networks\' architecture type']='P59155',['learning poverty']='P59156',['learning poverty in reading']='P59157',['learning poverty in numeracy']='P59158',['assessment test']='P59159',['Research Design']='P59160',['Number of machines']='P59161',['Number of peers per machine']='P59162',['Processor clock speed']='P59163',['Average Age at testing']='P59164',['has response time']='P59165',['has bandwidth usage']='P59166',['has optimization time']='P59167',['Grammatical structures correlated highly with age of arrival']='P59168',['hypothesis statements']='P59169',['Range of Age of arrival in the US.']='P59170',['Average length of residence in the US.']='P59171',['Average length of residence']='P59172',['Average aptitude test score']='P59173',['Average length of residence (years)']='P59174',['correlation measures']='P59175',['Graph analysis support']='P59177',['Participants\' age']='P59178',['Stimuli']='P59179',['materials for instruction']='P59180',['Participants\' age (years)']='P59181',['materials for testing']='P59182',['Focus marker']='P59183',['tested subjects']='P59184',['Subject language']='P59185',['language']='P59186',['Bias Genre']='P59187',['has neural models']='P59188',['Dataset_name/ source']='P59190',['Dataset_volume']='P59191',['Method(s)']='P59192',['Number of catchphrases']='P59193',['annotate guideline']='P59194',['defination of societal bias']='P59197',['Covered Countries ']='P59198',['has neural models or systems']='P59199',['Network architecture ']='P59200',['number of POS tags']='P59202',['Number of relation subtypes']='P59203',['Registers compared']='P59212',['amount of participants']='P59213',['native language']='P59215',['examined linguistic phenomina']='P59217',['language domain']='P59218',['proficiency level']='P59219',['Result: Organ tropism']='P59220',['Result: Cell tropism']='P59221',['Hits@1']='P59222',['Norovirus']='P59223',['Precision@1']='P59224',['Hits@5']='P59225',['Diachronic']='P59226',['dataset_type']='P59227',['dataset_source']='P59228',['dataset_size']='P59229',['dataset total size']='P59230',['Pre-training task(s)']='P59233',['Results on benchmark corpus']='P59234',['Results on STSbenchmark corpus']='P59235',['Results on STS benchmark corpus']='P59236',['Maximum input text (tokens)']='P59237',['Dimension of text embedding']='P59238',['Maximum input text (word pieces)']='P59239',['days after infection/inoculation']='P59240',['route of infection']='P59241',['Number of participants ']='P59242',['Examined Modality']='P59243',['Resource Consumption']='P59244',['PDF']='P59245',['CPU Hours']='P59246',['GPU Hours']='P59247',['TPU Hours']='P59248',['Steps for Environmental Footprint Reduction during Development']='P59249',['Estimated CO2 Footprint']='P59250',['Native Language ']='P59251',['Benchmark Performance']='P59252',['Benchmark Time']='P59253',['research question']='P59254',['Results on STS benchmark corpus (Pearson\'s 𝒓)']='P59255',['Analyses']='P59256',['low-resource language']='P59257',['Sampling Frequency']='P59258',['word error rate']='P59259',['Character n gram ']='P59261',['Word n gram']='P59262',['character error rate (CER)']='P59263',['sentence error rate (SER)']='P59264',['sentence error rate']='P59265',['character error rate']='P59266',['Designed For']='P59268',['Research ProblemResource Consumption']='P59269',['serialization language']='P60000',['licence']='P60001',['documentation link']='P60002',['actor']='P60003',['software component']='P60004',['Has conditions']='P60005',['generalizability']='P60006',['artefact analysis']='P60007',['cohens kappa']='P60008',['antigen used']='P60009',['immunoglobulin class']='P60010',['Seroprevalence']='P60011',['starting dilution']='P60012',['has upper value']='P61002',['has lower value']='P61003',['Result PM2.5']='P61004',['Result CO2']='P61005',['Result PM10']='P61006',['Type of Pollutant']='P61007',['Measurement Location']='P62000',['Qualitative Effect of Lockdown on Pollutant Concentrations']='P62001',['food group']='P62002',['GossipCop_Fake']='P62003',['GossipCop_Real']='P62004',['Calibration']='P62005',['PolitiFact_Fake']='P62006',['PolitiFact_Real']='P62007',['Fake Images']='P62008',['Real Images']='P62009',['Training-Testing split ratio']='P62010',['Dataset Training Size (%)']='P62011',['Dataset Testing Size (%)']='P62012',['Precision (%)']='P62013',['INFOODS regional data center']='P62014',['ingredient count']='P62015',['food stuffs count']={'P62016','P62017'},['True Negative Rate']='P62018',['food component count']='P62019',['food group count']='P62020',['grains']='P62021',['potStarchesatoes and Starches']='P62022',['potatoes and Starches']='P62023',['sugars and sweeteners']='P62024',['pulses']='P62025',['nuts and seeds']='P62026',['vegetables']='P62027',['fruit']='P62028',['mushrooms']='P62029',['algae']='P62030',['fish and shellfish']='P62031',['meat']='P62032',['eggs']='P62033',['dairy Products']='P62034',['fats and oils']='P62035',['confectioneries']='P62036',['beverages']='P62037',['seasonings and spices']='P62038',['prepared and processed foods']='P62039',['sensitivity (recall)']='P62040',['general food components']='P62041',['lipids']='P62042',['triacylglycerol equivalents']='P62043',['ash']='P62044',['minerals']='P62045',['potassium']='P62047',['calcium']='P62048',['magnesium']='P62049',['phosphorus']='P62050',['iron']='P62051',['zinc']='P62052',['copper']='P62053',['manganese']='P62054',['vitamins']='P62055',['vitamin A']='P62056',['vitamin A (Retinol)']='P62057',['vitamin D']='P62058',['vitamin E']='P62059',['vitamin K']='P62060',['vitamin B 1']='P62061',['vitamin B 2']='P62062',['niacin']='P62063',['vitamin B 6']='P62064',['vitamin B 12']='P62065',['folic acid']='P62066',['pantothenic acid']='P62067',['vitamin C']='P62068',['fatty acids']='P62069',['cholesterol']='P62070',['dietary fiber']='P62071',['dataset format']='P62072',['food component']='P62073',['Amount of samples']='P62074',['root mean square error (RMSE)']='P62075',['mean error (ME)']='P62076',['positive rate']='P62077',['primers']='P62078',['noroviruses found']='P62079',['norovirus genotype']='P62080',['research group']='P62081',['theoretical or practical']='P62082',['diffractive optical element']='P62083',['type of diffractive optical element']='P62084',['food group name']='P62085',['field property']='P62086',['food group element count']='P62087',['list food item']='P62088',['design of diffractive optical element']='P62089',['food name']='P62090',['design concept']='P62091',['food group source']='P62092',['food component name']='P62093',['constraints']='P62094',['figure of merit']='P62095',['wavelength']='P62096',['angle']='P62097',['pixel size']='P62098',['horizontal quantity']='P62099',['vertical quantity']='P62100',['phase steps']='P62101',['pixel pitch']='P62102',['element size']='P62103',['height step size']='P62104',['height step number']='P62105',['phase step number']='P62106',['amplitude step number']='P62107',['image distance']='P62108',['f number']='P62109',['field of view']='P62110',['Metasurface cell of diffractive optical element']='P62111',['metasurface cell']='P62112',['cell structure']='P62113',['layer number']='P62114',['feature size']='P62115',['results of diffractive optical element']='P62116',['peak signal-to-noise ratio']='P62117',['research type']='P62118',['list food components']='P62119',['list food group']='P62120',['size in pixels']='P63000',['food group total']='P63001',['food composition table']='P63002',['Cereals and their products']='P63003',['Starchy roots, tubers and their products']='P63004',['Nuts, seeds and their products']='P63005',['Vegetables and their products']='P63006',['Legumes and their products']='P63007',['fruits and their products']='P63008',['condiments and sauces']='P63009',['eggs and their products']='P63010',['sugars, sweeteners and syrup']='P63011',['beverages (alcoholic and nonalcoholic)']='P63012',['meat and poultry and their products']='P63013',['fish and their products']='P63014',['prepared foods']='P63015',['presumed lifetime of vehicle']='P63016',['presumed travel distance during lifetime']='P63017',['Disassembly line type']='P63018',['Disassembly type']='P63019',['Operation time']='P63020',['Aplicable for Wireless Sensor Networks (WSN)']='P63021',['Aplicable for Internet of Things (IoT)']='P63022',['purchase price']='P63023',['currency']='P63024',['annual fuel costs']='P63025',['average maintenance costs']='P63026',['vehicle type']='P63027',['brand name ']='P63028',['vehicle name']='P63029',['life cycle fuel costs']='P63030',['life cycle maintenance costs']='P63031',['total life cycle costs']='P63032',['Data Dimension']='P63033',['Data range']='P63034',['Data frequency']='P63035',['Privacy-Preserving Deep Learning Scheme']='P63036',['Inference Time']='P63037',['Inference time ']='P63038',['Privacy-Preserving Deep Learning Type']='P63039',['Confidentiality and Integrity']='P63040',['Self-healing ']='P63041',['Real-time Anomally Detection']='P63042',['Configuration Issues']='P63043',['Authentication and Authorization']={'P63044','P63045'},['Purpose ']='P63046',['Heuristics']='P63047',['Implemenation']='P63048',['Paper Topic']='P63049',['ChEMBL v139 RDF conversion.10']='P63050',['ChemSpider and ACD Labs Predicted Properties RDF conversion']='P63051',[' Drugbank RDF conversion provided by the Bio2Rdf project.']='P63052',[' Conceptwiki']='P63053',['ChemSpider and ACD Labs']='P63054',[' CHEMBL']='P63055',['Overview of the results in terms of H1']='P63057',['Overview in terms of H2']='P63058',['Overview in terms of H4 and H5']='P63059',['Overview in terms of H3']='P63060',['results withdrawn from conclusion']='P63061',['Service Model']='P63062',['Intrusion Detection']='P63063',['Fine-grained']='P63064',['study involve']={'P63065','P63066'},['carried out by']='P63067',['vegetables, potatoes, pulses, herbs and spices']='P63068',['fresh, dried and preserved fruit']='P63069',['meat, meat products and offal']={'P63070','P63071'},['milk and milk products']='P63072',['sweets and sweeteners']='P63073',['Alcoholic and non- alcoholic beverages, coffee, tea']='P63074',['miscellaneous food group']='P63075',['food group total IFCD 1998']='P63076',['basic food count']='P63077',['commercial brand and composite food']='P63078',['dietary records count']='P63079',['participant count']='P63080',['baby food group count']='P63081',['Dairy products: milk, yoghurt']='P63082',['Dairy products: cheese']='P63083',['Egg products']='P63084',['Meat products, sausages']='P63085',['Fish and shellfish products']='P63086',['Cereal grains, breakfast cereals, pasta']='P63087',['Baked products: breads, bread rolls']='P63088',['Baked products: cakes, biscuits']='P63089',['Potato products']='P63090',['Vegetable products']='P63091',['Fruit products, nuts']='P63092',['Juices']='P63093',['sweets']='P63094',['soups, sauces, gravy']='P63095',['fast food']='P63096',['dietary supplements (per 100 g)']='P63098',['baby food: infant formulae']='P63100',['baby fruit, vegetables, juices, instant beverages']='P63101',['baby milk-cereal-products']='P63102',['baby mixed dishes: ready to eat']='P63103',['Construction Type']='P64000',['Annotation level']='P65000',['Generation method']='P65001',['Research problem description']='P65002',['animal origin food']='P65003',['food of plant origin']='P65004',['supplements food']='P65005',['baby food']='P65006',['other food count LEBTAB']='P65007',['baby food: infant formulae count']='P65008',['baby fruit, vegetables, juices, instant beverages count']='P65009',['baby milk-cereal-products count']='P65010',['baby mixed dishes: ready to eat count']='P65011',['baked products: breads, bread rolls count']='P65012',['baked products: cakes, biscuits count']='P65013',['beverages count']='P65014',['cereal grains, breakfast cereals, pasta count']='P65015',['dairy products: cheese count']='P65016',['dairy products: milk, yoghurt count']='P65017',['dietary supplements (per 100 g) count']='P65018',['dietary supplements (per capsule/tablet) count']='P65019',['egg products count']='P65020',['fast food count']='P65021',['fats and oils count']='P65022',['fish and shellfish products count']='P65023',['fruit products, nuts count']='P65024',['juices count']='P65025',['meat products, sausages count']='P65026',['potato products count']='P65027',['soups, sauces, gravy count']='P65028',['sweets count']='P65029',['vegetable products count']='P65030',['animal origin food count']='P65031',['food of plant origin count']='P65032',['supplements food count']='P65033',['baby food count']='P65034',['human milk item count']='P65035',['infant formulae, baby food, human milk']='P65036',['including 50 infant formulae']='P65037',['including 193 infant formulae']='P65038',['infant formulae, baby food, human milk count']='P65039',['Social control']='P65040',['Decision Level']='P65041',['Testing Set']='P65042',['reduction with BEV solar']='P65043',['reduction with PHEV']='P65044',['reduction with HEV']='P65045',['reduction with BEV']='P65046',['lowest ']='P65047',['live-cycle Greenhouse Gas emissions']='P65048',['Training set']='P65049',['Fake News (Training)']='P65051',['Real News (Testing)']='P65052',['Real News (Training)']='P65053',['Fake News (Testing)']='P65054',['Error Rate']='P65055',['Miss Rate']='P65056',['BEV']='P65057',['Value of BEV']='P65058',['value of ICEV-D']='P65059',['value of ICEV-G']='P65060',['electricity generation in the country']='P65061',['hydropower']='P65062',['wind energy']='P65063',['nuclear energy']='P65064',['biomass']='P65065',['waste treatment']='P65066',['solar energy']='P65067',['coal']='P65068',['natural gas']='P65069',['crude oil']='P65070',[' Publications / Source']='P65072',[' Engagements / News']='P65073',[' Cites / Source']='P65074',[' Friends / User']='P65075',[' Deny / News']='P65076',['Report / News']='P65077',[' Neu. support / News']='P65078',['Neg. support / News']='P65079',['Neutral Suppot / News']='P65080',['Negative Support / News']='P65081',['#News Articles']='P65082',['# Sources']='P65083',['# Samples']='P65084',['Fake samples']='P65085',['Real samples']='P65086',['# Users']='P65087',['Average Precision']='P66000',['aaa']='P66001',['COVID-19 Fake News']='P66003',['FakeNewsNet']='P66004',['Real News (GossipCop)']='P66005',['Fake News (GossipCop)']='P66006',['Real News (PolitiFact)']='P66007',['Fake News (PolitiFact)']='P66008',['#Headlines']='P66009',['# Body texts']='P66010',['Agrees (AG)']='P66011',['Disagrees (DSG)']='P66012',['Discusses (DSC)']='P66013',[' Unrelated (UNR)']={'P66014','P66015'},['Agrees (AGR)']='P66016',['Claim Sources']='P66017',['Total News']='P66018',['Unlabeled News']='P66019',['Real News Accuracy']='P66020',['Fake News Accuracy']='P66021',['Macro F1-Score']='P66022',['Mean Squared Error (MSE)']='P66023',['%Mean Squared Error (MSE)']='P66024',['Macro Accuracy']='P66025',['Root Mean Squared Error (RMSE)']='P66026',['%Root Mean Squared Error (RMSE)']='P66027',['Unlabeled Report']='P66028',['Average Report / News (Unlabeled)']='P66029',['Fake News (Labeled Training)']='P66030',['Real News (Labeled Training)']='P66031',['Fake News (Labeled Testing)']='P66032',['Real News (Labeled Testing)']='P66033',['Average Report / Fake News (Labeled Training)']='P66034',['Average Report / Real News (Labeled Training)']='P66035',['Average Report / Fake News (Labeled Testing)']='P66036',['Average Report / Real News (Labeled Testing)']='P66037',['AUC-ROC']='P66038',['Precision (Fake News) ']='P66039',['Recall (Fake News) ']='P66040',['F1-Score (Fake News) ']='P66041',['Precision (Real News)']='P66042',['Recall (Real News)']='P66043',['F1-Score (Real News)']='P66044',['Training-Testing split']='P66045',['curated']='P67000',['curated by']='P67001',['Entertainment (Fake News)']='P67002',['Entertainment (Real News)']='P67003',['Lifestyle (Fake News)']='P67004',['Lifestyle (Real News)']='P67005',['National (Real News)']='P67006',['National (Fake News)']='P67007',['International (Fake News)']='P67008',['Politics (Fake News)']='P67009',['Politics (Real News)']='P67010',['Sports (Fake News)']='P67011',['Sports (Real News)']='P67012',['Crime (Fake News)']='P67013',['Crime (Real News)']='P67014',['Education (Fake News)']='P67015',['Education (Real News)']='P67016',['Technology (Fake News)']='P67017',['Technology (Real News)']='P67018',['Finance (Fake News)']='P67019',['Finance (Real News)']='P67020',['Editorial (Fake News)']='P67021',['Editorial (Real News)']='P67022',['Miscellaneous (Fake News)']='P67023',['Miscellaneous (Real News)']='P67024',['International (Real News)']='P67025',['Average Recall']='P67026',['Tokens']='P67027',['Unrelated (%)']='P67028',['Discuss (%)']='P67029',['Disagrees (%)']='P67030',['Aagree (%)']='P67031',['Disagree (%)']='P67032',['F1-Score (Agree)']='P67033',['F1-Score (Disagree)']='P67034',['F1-Score (Discuss)']='P67035',['F1-Score (Unrelated)']='P67036',['Average Statement length (token)']='P67039',['Validation Accuracy']='P67040',['Testing Accuracy (%)']='P67041',['Validation Accuracy (%)']='P67042',['Rumors']='P67043',['Non-Rumors']='P67044',['Charlie Hebdo (Rumours)']='P67045',['Charlie Hebdo (Non-Rumors)']='P67046',['Charlie Hebdo (Non-Rumours)']='P67047',['Ferguson (Rumours)']='P67048',['Ferguson (Non-Rumours)']='P67049',['Germanwings Crash (Non-Rumours)']='P67050',['Germanwings Crash (Rumours)']='P67051',['Ottawa Shooting (Rumours)']='P67052',['Ottawa Shooting (Non-Rumours)']='P67053',['Sydney Siege (Rumours)']='P67054',['Sydney Siege (Non-Rumours)']='P67055',['Total Rumours']='P67056',['Total Non-Rumours']='P67057',['type of energy generation']='P67058',['Proportion of energy generation with hydropower']='P67059',['Proportion of energy generation with wind energy']='P67060',['Proportion of energy generation with nuclear energy']='P67061',['Proportion of energy generation with biomass']='P67062',['Proportion of energy generation with waste treatment']='P67063',['Proportion of energy generation with solar energy']='P67064',['Proportion of energy generation with coal']='P67065',['Proportion of energy generation with natural gas']='P67066',['Proportion of energy generation with crude oil']='P67067',['proportion of energy generation']='P67068',['unit for proportion of energy generation ']='P67069',['proportion unit ']='P67070',['relation extraction']='P67071',['duration']='wikidata:P2047',['Mean']='P67072',['5th percentile']='P67073',['95th percentile']='P67074',['URL']='wikidata:P2699',['True']={'P67075','P67081','P68113'},['Mostly-true']='P67076',['Half-true']='P67077',['Barely-true']='P67078',['False']='P67079',['Pants-fire']='P67080',['g2tmn 2.csv ']='P67082',['Common Words']='P67083',['Health-related Fake News']='P67084',['Real News Articles for COVID-19']='P67085',['True Negative']='P67086',['True Positive']='P67087',['False Negative']='P67088',['sensors']='wikidata:P9192',['phases of life-cycle']='P67089',['brand']='wikidata:P1716',['relative to']='wikidata:P2210',['exact match']='wikidata:P2888',['inLanguage']='SCHEMAORG:inLanguage',['sourceOrganization']='SCHEMAORG:sourceOrganization',['alternateName']='SCHEMAORG:alternateName',['size']='SCHEMAORG:size',['isBasedOn']='SCHEMAORG:isBasedOn',['genre']='SCHEMAORG:genre',['encoding']='SCHEMAORG:encoding',['assesses']='SCHEMAORG:assesses',['disambiguatingDescription']='SCHEMAORG:disambiguatingDescription',['sameAs']='SCHEMAORG:sameAs',['instance type']='P67090',['quantity']='wikidata:P1114',['exampleOfWork']='SCHEMAORG:exampleOfWork',['training']='P67091',['context']='P67092',['starts before']='RO:RO_0002089',['existence ends at start of']='RO:RO_0002593',['human evaluation']='P67093',['baseline evaluation']='P67094',['Unique Tweet']='P67095',['Test set']='P67096',['Resource']='Resource',['Solution']='Solution',['male population']='wikidata:P1540',['female population']='wikidata:P1539',['frame rate']='P67097',['Experimental testbed']='P67099',['Deployment location']='P67100',['OSI Model layer location']='wikidata:P5805',['reference URL']='wikidata:P854',['subclass of']='wikidata:P279',['Mitigation strategy']='P67101',['Wikimedia import URL']='wikidata:P4656',['Hi-Fi']='P67102',['Low-Fi']='P67103',['Low Costs']='P67104',['High Costs']='P67105',['Adaptivity']='P67106',['True Positive Rate (TPR)']='P67107',['True Negative Rate (TNR)']='P67108',['Has concept']='P67109',['Taxonomy classes']='P68000',['Efficiency algorithm category']='P68001',['Decode']='P68002',['model has time complexity']='P68003',['Proportion of energy creation with thermal power']='P68004',['content validity']='P68005',['Battery Electric Vehicle']='P68009',['Internal Combustion Engine Vehicles']='P68010',['Quantity Value']='P68011',['Internal Combustion Diesel Engine Vehicle ']='P68012',['Diesel internal combustion engine vehicle (ICEV-D)']='P68013',['Gasoline internal combustion engine vehicle (ICEV-G)']='P68014',['determination method']='wikidata:P459',['reduction with BEV compared with ICV']='P68017',['reduction with HEV compared with ICV']='P68018',['reduction with PHEV compared with ICV']='P68019',['reduction with BEV relative to ICV']='P68020',['reduction with HEV relative to ICV']='P68021',['reduction with PHEV compared to ICV']='P68022',['High Fidelity']='P68023',['Low Fidelity']='P68024',['Predictive maintenance']='P68025',['Manufacturing production line']='P68026',['has serialization']='P68027',['reused ontologies']='P68028',['associated project']='P68030',['no of classes']='P68031',['no of instances']='P68032',['number of object properties']='P68033',['number of data properties']='P68034',['number of equivalent classes']='P68035',['number of disjoint classes']='P68036',['DBpedia Archivo Status']='P68037',['associated in project']='P68038',['Competition']='P68039',['Cost parameters']='P68040',['Competition\'s factors']='P68041',['Disruption']='P68042',['has eva']='P68043',['has baseline']='P68044',['closed-loop supply chain']='P68045',['closed-loop ']='P68046',['Objectif function']='P68047',['Facilities states']='P68048',['Capacity planning']='P68049',['Network redesign']='P68050',['Expansion']='P68051',['measurementTechnique']='SCHEMAORG:measurementTechnique',['Genuine']='P68052',['Genuine (Tweet count)']='P68053',['Social spam bot #1 (Tweet count)']='P68054',['Social spam bot #1 (User count)']='P68055',['Social spam bot #2 (Tweet count)']='P68056',['Social spam bot #2 (User count)']='P68057',['Social spam bot #3 (Tweet count)']='P68058',['Social spam bot #3 (User count)']='P68059',['Traditional Spam Bot (Tweet count)']='P68060',['Traditional Spam Bot (User count)']='P68061',['Fake Follower (Tweet count)']='P68062',['Fake Follower (User count)']='P68063',['Genuine (User count)']='P68064',['Real Claim (Human)']='P68065',['Real Claim (Bot)']='P68066',['Fake Claim (Human)']='P68067',['Fake Claim (Bot)']='P68068',['Fake News (Human)']='P68069',['Fake News (Bot)']='P68070',['Real News (Human)']='P68071',['Real News (Bot)']='P68072',['Original Features (Accuracy)']='P68073',['Original Features (F1-score)']='P68074',['Adding Bot (Accuracy)']='P68075',['Adding Bot (F1-score)']='P68076',['Adding Fake claim (Accuracy)']='P68077',['Adding Fake claim (F1-score)']='P68078',['Economy (Real News)']='P68079',['Economy (Fake News)']='P68080',['Health (Real News)']='P68081',['Health (Fake News)']='P68082',['Science (Real News)']='P68083',['Science (Fake News)']='P68084',['Security (Real News)']='P68085',['Security (Fake News)']='P68086',['Society (Real News)']='P68087',['Society (Fake News)']='P68088',['Sport (Real News)']='P68089',['Sport (Fake News)']='P68090',['Precision score for Fake News (Fake-P)']='P68091',['F1-score for Fake News (Fake-F1)']='P68093',['Test Set Fake-F1']='P68094',['Recall score for Fake News (Fake-R)']='P68095',['Business (Real News)']='P68096',['Business (Fake News)']='P68097',['Showbiz (Real News)']='P68098',['Showbiz (Fake News)']='P68099',['Control']='P68100',['Soil Nutrient']='P68102',['Cropping System']='P68103',['Control Result Nutrients']='P68104',['Treatment Result Nutrients']='P68105',['Control Result Biomass']='P68106',['Treatment Result Biomass']='P68107',['Type of Soil Nutrient']='P68108',['number of replicates']='P68109',['Legume Treatment']='P68110',['Real News (Validation)']='P68111',['Fake News (Validation)']='P68112',['Partially False']='P68114',['Other']='P68115',['Precision (False News)']='P68116',['Precision (Other)']='P68117',['Precision (Partially False)']='P68118',['Precision (True News)']='P68119',['Recall (False News)']='P68120',['Recall (Other)']='P68121',['Recall (Partially False)']='P68122',['Recall (True News)']='P68123',['F1-score (False News)']='P68124',['F1-score (Other)']='P68125',['F1-score (Partially False)']='P68126',['F1-score (True News)']='P68127',['Precision (Macro average)']='P68128',['Precision (Weighted average)']='P68129',['Recall (Macro average)']='P68130',['Recall (Weighted average)']='P68131',['F1-score (Macro average)']='P68132',['F1-score (Weighted average)']='P68133',['Real News (Testing size)']='P68134',['Fake News (Testing size)']='P68135',['Fake News (Training size)']='P68136',['Real News (Training size)']='P68137',['Accuracy for Bag of Words (BOW)']='P68139',['Accuracy for Part-of-speech tag (POS)']='P68140',['Accuracy for BOW+POS']='P68141',['Samples per Class']='P68142',['Unique Tokens']='P68143',['Accuracy for Portuguese Language']='P68145',['Accuracy for English Language']='P68146',['Accuracy for Spanish Language']='P68147',['Test Accuracy']='P68148',['Accuracy in Development set (Dev_Acc)']='P68149',['Accuracy with ELMo']='P68150',['Accuracy with BERT embedding']='P68151',['Accuracy with BERTO embedding']='P68152',['Accuracy with GLOVE embedding']='P68153',['receiver operating characteristic']='P69000',['Natural Language Processing (NLP) Technique']='P69002',['Propagation Tress Size']='P69004',['Propagation Trees Size']='P69005',['symptoms and signs']='wikidata:P780',['download link']='wikidata:P4945',['heat treating']='wikidata:P6212',['elevation above sea level']='wikidata:P2044',['Measurement of cosmological parameters']='P69006',['has upper limit for 68% confidence interval']='P69009',['has lower limit for 68% confidence interval']='P69010',['is an individual of taxon']='wikidata:P10241',['Twitter username']='wikidata:P2002',['AxonDB+']='P69011',['parent organization']='wikidata:P749',['threat model']='P69012',['verification']='P69013',['criterion used']='wikidata:P1013',['Experimental Design']='P69014',['Experimental Setup']='P69015',['Planting design']='P69016',['positive diagnostic predictor for']='wikidata:P3356',['feature importance score']='P69017',['area']='wikidata:P2046',['temporal range start']='wikidata:P523',['temporal range end']='wikidata:P524',['time interval']='P70001',['forecast horizon']='P70002',['mean absolute percentage error']='P70003',['terrain attributes']='P70004',['Spectral Index']='P70005',['used methodology']='P70006',['criteria']='P70007',['used dimensions for analysis']='P70008',['Knowledge Graph Construction phases']='P70010',['major challenges']='P70012',['common approaches']='P70013',['common applications']='P70014',['number of participants']='wikidata:P1132',['published in']='wikidata:P1433',['external data available at']='wikidata:P1325',['main subject']='wikidata:P921',['venue investigated']='P70015',['platform']='wikidata:P400',['number secretors']='P70016',['number non secretors']='P70017',['owner']='P70019',['topic investigated']='P70020',['owner ']='P70021',['Dataset Domain']='P70022',['Dataset Subdomain']='P70023',['Endurance: cycle ergometry test (PWC170)']='P70024',['Endurance: cycle ergometry test (PWC170) mean']='P70025',['Endurance: cycle ergometry test (PWC170) (Watt) mean']='P70026',['Endurance: cycle ergometry test (PWC170) (Watt) standard deviation']='P70027',['Power: standing long jump (cm) mean']='P70028',['Power: standing long jump (cm) standard deviation']='P70029',['Power: Push-ups (repetitions in 40 s) mean']='P70030',['Power: Push-ups (repetitions in 40 s) standard deviation']='P70031',['Sit-ups (repetitions in 40s) mean']='P70032',['Sit-ups (repetitions in 40s) standard deviation']='P70033',['Coordination: Balancing backwards (steps) mean']='P70034',['Coordination: Balancing backwards (steps) standard deviation']='P70035',['Coordination: Jumping sideways (counts in 15 s) mean']='P70036',['Coordination: Jumping sideways (counts in 15 s) standard deviation']='P70037',['Flexibility: Stand-and-reach (cm) mean']='P70038',['Flexibility: Stand-and-reach (cm) standard deviation']='P70039',['Speed: Reaction time (s) mean']='P70040',['Speed: Reaction time (s) standard deviation']='P70041',['Orthorgraphy-based classes']={'P70042','P70044'},['Semantics-based classes']={'P70043','P70045'},['Piwer:Sit-ups (repetitions in 40s) mean']='P70046',['Power: Sit-ups (repetitions in 40s) standard deviation']='P70047',['Power: Sit-ups (repetitions in 40s) mean']='P70048',['Speed: 20 m Sprint (s) mean']='P70049',['Endurance: 6-min run (m) mean']='P70050',['Speed: 50-m sprint (s) mean']='P70051',['Speed: 50-m sprint (s) standard deviation']='P70052',['Upper- and lower- extremity muscular power: ball push (m) mean']='P70053',['Upper- and lower- extremity muscular power: ball push (m) standard deviation']='P70054',['Power: Ball-push (m) mean']='P70055',['Power: Ball push (m) standard deviation']='P70056',['Power: Triple-hop (m) mean']='P70057',['Power: Triple-hop (m) standard deviation']='P70058',['Agility: Star agility run (s) mean']='P70059',['Agility: Star agility run (s) standard deviation']='P70060',['Endurance: 9-min run (m) mean']='P70061',['Endurance: 9-min run (m) standard deviation']='P70062',['Endurance: 6-min run (m) standard deviation']='P70063',['Speed: 20 m Sprint (s) standard deviation']='P70064',['Coordination: star agility run (s) mean']='P71000',['Coordination: star agility run (s) standard deviation']='P71001',['Coordination: Star agility run (m/s) mean']='P71002',['coordination: Star agility run (m/s) standard deviation']='P71003',['Speed: 20 m (m/s) mean']='P71004',['Speed: 20 m (m/s) standard deviation']='P71005',['Speed: Reaction time (s) standard deviation aggregate']='P71006',['Speed: Reaction time (s) mean aggregate']='P71007',['Power: Standing long jump (cm) standard deviation aggregate']='P71008',['Power: Standing long jump (cm) mean aggregate']='P71009',['Power: Sit-ups (repetitions in 40s) standard deviation aggregate']='P71010',['Power: Sit-ups (repetions in 40s) mean aggregate']='P71011',['Power: Push-ups (repetitions in 40s) standard deviation aggregate']='P71012',['Power: Push-ups (repetitions in 40s) mean aggregate']='P71013',['Flexibility: Stand-and-reach (cm) standard deviation aggregate']='P71014',['Flexibility: Stand-and-reach (cm) mean aggregate']='P71015',['Endurance: Cycle ergometry test (PWC170) (Watt) standard deviation aggregate']='P71016',['Endurance: Cycle ergometry test (PWC170) (Watt) mean aggregate']='P71017',['Coordination: Jumping sideways (counts in 15s) standard deviation aggregate']='P71018',['Coordination: Jumping sideways (counts in 15s) mean aggregate']='P71019',['Coordination: Balancing backwards (steps) standard deviation aggregate']='P71020',['Coordination: Balancing backwards (steps) mean aggregate']='P71021',['Speed: 20 m Sprint (s) mean aggregate']='P71022',['Endurance: 6-min run (m) mean aggregate']='P71023',['used algorithm']='P71024',['used techniques']='P71025',['Phases']='P71026',['has types']='P71027',['Hamming loss']='P71028',['has Hamming Loss']='P71029',['has Hierarchical loss']='P71030',['has ML-accuracy']='P71031',['subset accuracy']='P71032',['micro-averaged F-measure ']='P71035',['Model specificity']='P71036',['Multi-label Classification categorised in ']='P71037',['definition']='P71038',['used algorithms']='P71039',['Representation Layer']='P71040',['classification ']='P71041',['micro-precision']='P71042',['micro-Fmeasure']='P71043',['micro-recall']='P71044',['has system tyype']='P71045',['has quality type']='P71046',['has system measurements']='P71047',['has value']='P71048',['has unit']='P71049',['has binary']='P71050',['relatedTo']='SCHEMAORG:relatedTo',['answer provided']='P71051',['answer Type prediction']='P71052',['relation linking']='P71053',['entity linking']='P71054',['data size']='wikidata:P3575',['type of task']='P71055',['organizer']='wikidata:P664',['amount of questions in training data']='P71056',['amount of questions in the test data']='P71057',['configuration setting']='P71058',['NDCG@5']='P71059',['NDCG@10']='P71060',['stopwords']='P71061',['stemming']='P71062',['lemma']='P71063',['text feature']='P71064',['iteration']='P71065',['number of type']='P71066',['has part(s)']='wikidata:P527',['data splitting method']='P71067',['reporting level']='P71068',['knowledge graph name']='P71069',['using an ontology']='P71070',['knowledge used']='P71071',['knowledge graph content']='P71072',['owned by']='wikidata:P127',['hasModel']='P71074',['hasEvaluation']='P71075',['country']='wikidata:P17',['Plane']='P71076',['Controller']='P71077',['empty']='P71078',['micro-F1']='P71080',['macro-F1']='P71082',['no of labels']='P71083',['micro-']='P71084',['has classes']='P71085',['has training set']='P71086',['Avg Characters']='P71087',['Avg words']='P71088',['Avg Entity']='P71089',['Avg Concept']='P71090',['Avg Length']='P71091',['has uncertainty value']='P71092',['has uncertainty unit']='P71093',['classification system']='P71094',['A representative selection of keywords']='P71095',['validation set']='P71096',['Avg Entities']='P71097',['reference system']='P71098',['assessment']='wikidata:P5021',['CO2 footprint process']='P71099',['Token per News']='P71100',['risk factor']='wikidata:P5642',['Risk type']='P71101',['Risk types']='P71102',['Types of riks']='P71103',['Quantitative methods']='P71104',['Qualitative methods']='P71105',['Supply chain risks management process']='P71106',['usageInfo']='SCHEMAORG:usageInfo',['biometrics ']='P71107',['hash function']='P71108',['R219771']='P71109',['R219773']='P71110',['R219784']='P71111',['R219786']='P71112',['time points']='P71113',['Network domination']='P71114',['Types of relationships based on business procedures']='P71115',['Has-statistics']='P71116',['Number of teams']='P71117',['F1-Score [1c-1w-0f] (Fake News)']='P71118',['F1-Score [1c-1w-0f] (Real News)']='P71119',['ROC-AUC [1c-1w-0f]']='P71120',['F1-Score [2c-2w-2f] (Fake News)']='P71121',['F1-Score [2c-1w-0f] (Fake News)']='P71122',['F1-Score [2c-0w-0f] (Fake News)']='P71123',['F1-Score [0c-2w-0f] (Fake News)']='P71124',['F1-Score [2c-2w-2f] (Real News)']='P71125',['F1-Score [2c-1w-0f] (Real News)']='P71126',['F1-Score [2c-0w-0f] (Real News)']='P71127',['F1-Score [0c-2w-0f] (Real News)']='P71128',['ROC-AUC [2c-1w-0f]']='P71129',['ROC-AUC [2c-0w-0f]']='P71130',['ROC-AUC [0c-2w-0f]']='P71131',['ROC-AUC [2c-2w-2f]']='P71132',['F1-Score (Five-fold cross-validation)']='P71133',['number of recipe']='P71134',['number of triples']='wikidata:P10209',['question answering task']='P71135',['question answering components']='P71136',['knowledge graph language']='P71138',['Subject area classifications']='P71139',['orientation']='wikidata:P7469',['Test Accuracy (%)']='P71140',['Charlie Hebdo (Rumors)']='P71141',['Ferguson (Non-Rumors)']='P71142',['Ferguson (Rumors)']='P71143',['Germanwings Crash (Non-Rumors)']='P71144',['Germanwings Crash (Rumors)']='P71145',['Ottawa Shooting (Non-Rumors)']='P71146',['Ottawa Shooting (Rumors)']='P71147',['Sydney Siege (Non-Rumors)']='P71148',['Sydney Siege (Rumors)']='P71149',['Total Non-Rumors']='P71150',['Total Rumors']='P71151',['hasKind']='P71152',['textValue']='P71153',['evaluation item']='P71154',['number of databases']='P71155',['Dimensions']='P71156',['WOS CC']='P71157',['Subject sizes']='P71158',['comment']='SCHEMAORG:comment',['research intervention']='wikidata:P4844',['Commons category']='wikidata:P373',['camera setup']='wikidata:P4312',['steps']='SCHEMAORG:steps',['columns']='CSVW_Columns',['number']='CSVW_Number',['rows']='CSVW_Rows',['cells']='CSVW_Cells',['titles']='CSVW_Titles',['Cereal Crop']='P71160',['Maine: An Encyclopedia ID']='wikidata:P7697',['mean absolute error']='P71161',['has_specified_input']='OBI:OBI_0000293',['has_specified_output']='OBI:OBI_0000299',['has input dataset']='P71162',['has input model']='P71163',['has output dataset']='P71164',['is denoted by']='P71165',['has specified value']='OBI:OBI_0002135',['hasName']='P71166',['Availibility Type']='P71167',['has Quality Aspects']='P71168',['Input Type ']='P71169',['Input type']='P71170',['bonding type']='P71171',['reused']='P71172',['has url ']='P71174',['has result ']='P71175',['model type']='P71176',['temporal resolution']='P71177',['calculation period']='P71178',['wind speed height']='P71179',['spatial resolution']='P71180',['API']='P71181',['data processing workflow']='P71182',['data acquisition workflow']='P71183',['weather/climate dataset used']='P71184',['turbine data']='P71185',['geographical dataset']='P71186',['roughness data used']='P71187',['wind rose input']='P71188',['Wind speed calculated?']='P71189',['Wind power calculated?']='P71190',['model workflow']='P71191',['Extra training data']='P71192',['hardware']='P71193',['number of parameters']={'P71194','P103002'},['Robustness report']='P71195',['hardware burden']='P71196',['image']='wikidata:P18',['Location of']='P71199',['method of']='P71201',['Process of']='P71203',['major phases']={'P71205','P71206'},['has components']='P71207',['F1-Score']='P71208',['models']='P71209',['Ontology learning component']='P71211',['ranking']='wikidata:P1352',['approximate f1 score']='P71212',['approximate precision']='P71213',['table source']='P71214',['number of relational table']='P71215',['avg number of rows']='P71216',['avg number of column']='P71217',['Number of layer']='P71218',['content injection']='P71219',['cross-site request forgery (CSRF)']='P71220',['cookie forcing']='P71221',['network attacks']='P71222',['usability']='P71223',['compatibility']='P71224',['Goal']='P71225',['Deploymen']='P71226',['Deployment']='P71227',['Unit of deception']='P71228',['column']='CSVW_Column',['connects with']='wikidata:P2789',['complex hyperparameter space']='P71229',['multi-objective']='P71230',['multi-fidelity']='P71231',['instance']='P71232',['has command line option']='wikidata:P4837',['parallel computing']='P71233',['flexibility']='P71234',['cost']='wikidata:P2130',['lifecycle management']='P71235',['effectiveness']='P71236',['dependability']='P71237',['input method']='wikidata:P479',['frequency']='wikidata:P2144',['source of material']='wikidata:P2647',['Real News (Validation size)']='P72000',['Fake News (Validation size)']='P72001',['Number of unique words (Real News)']='P72002',['Number of unique words (Fake News)']='P72003',['Real News (labels)']='P72004',['Fake News (labels)']='P72005',['number of trees']='P72006',['number of features']='P72007',['training samples']='P72008',['kernel width parameters']='P72009',['permanent duplicated item']='wikidata:P2959',[' Energy components']='P73000',['Specific energy consumption ']='P73001',['Specific energy consumption function']='P73002',['Capacity']='P74000',['Type of system']='P74001',['question template']='P74002',['generated question']='P74003',['Training loss']='P74004',['Number of training headlines']='P74005',['Number of test headlines']='P74006',['Number of training instances']='P74007',['Number of test instances']='P74008',['Agree (Training size)']='P74009',['Disagree (Training size)']='P74010',['Discuss (Training size)']='P74011',['Unrelated (Training size)']='P74012',['Agree (Testing size)']='P74013',['Disagree (Testing size)']='P74014',['Discuss (Testing size)']='P74015',['Unrelated (Testing size)']='P74016',['Accuracy (Agree)']='P74017',['Accuracy (Disagree)']='P74018',['Accuracy (Discuss)']='P74019',['Accuracy (Unrelated)']='P74020',['Total Posts']='P74021',['Total Events']='P74022',['Average Posts per Event']='P74023',['Minimum Posts per Event']='P74024',['Maximum Posts per Event']='P74025',['Affiliations']='P74026',['Authors with affiliations']='P74027',['Correspondence Address']='P74028',['ISSN']='P74029',['Language of Original Document']='P74030',['Abbreviated Source Title']='P74031',['CODEN']='P74032',['PubMed ID']='P74033',['Editors']='P74034',['Average retweet per story']='P74035',['Average words per source tweet']='P74036',['title']={'wikidata:P1476','P184072','P184086','P184124','P184149','P186013','P186059'},['F1-score (Micro average)']='P74037',['competency question']='P74038',['learning technique']='P75000',['common analysis method']='P76000',['significance']='P76002',['partition label']='P76004',['Wikidata item of this property']='wikidata:P1629',['Wikidata ID']='P76020',['intended public']='wikidata:P2360',['participant']='wikidata:P710',['experimental unit']='P77000',['Number of experimental units']='P77001',['Goal and Scope']='P77002',['Intervention']='P77004',['Intervention Type']='P77005',['mineral association']='P77006',['type of rTMS']='P78000',['intraburst frequency ']='P78001',['stimulation intensity selection approach']='P78002',['threshold-estimation strategies ']='P78003',['hreshold measurement']='P78004',['threshold measurement']='P78005',['amplitude of the motor evoked potential in microvolt']='P78006',['threshold ratio']='P78007',['percentage or the amplitude of the motor threshold contraction']='P78008',['maximum stimulator output']='P78009',['stimulator company']='P78010',['stimulator model ']='P78011',['coil shape']='P78012',['coil size']='P78013',['coil model']='P78014',['note']='P78015',['orkg:P78000']='P78016',['orkg:P78001']='P78017',['orkg:P78002']='P78018',['orkg:P78009']='P78019',['orkg:P78010']='P78020',['orkg:P78011']='P78021',['orkg:P78012']='P78022',['orkg:P78013']='P78023',['orkg:P78014']='P78024',['orkg:P78015']='P78025',['orkg:P78005']='P78026',['orkg:P78006']='P78027',['orkg:P78007']='P78028',['orkg:P78003']='P78029',['Has resu']='P78030',['scenario modelled']='P78031',['Has res']='P78032',['do']='P79000',['Critique d\'art ID']='wikidata:P6325',['considered aspect']='P79002',['average raw query length']='P79003',['average expanded query length']='P79004',['average number of answer']='P79005',['average number of constraint']='P79006',['Mean Average Recall']='P79007',['Promlem']='P79008',['year created']='P80000',['granularity created']='P80001',['age minimum including']='P80002',['age maximum including']='P80003',['question answering type of system']='P80004',['user query']='P80005',['dietary preference']='P80006',['health guidelines']='P80007',['ground truth answer']='P80008',['mention Type']='P80009',['number of Post']='P80010',['dietary preferences']='P81000',['dataset config']='P81001',['method evaluated']='P82000',['type of evaluation']='P82001',['machine or human evaluation']='P82002',['major classes']='P82003',['score']='P82004',['ontology design pattern']='P83000',['used operation']='P83001',['task']='P83002',['minimum value']='wikidata:P2313',['maximum value']='wikidata:P2312',['classifier']='wikidata:P5978',['Abstract Architectural Design']='P83003',['Detailed Architectural Design']='P83004',['Rule-based']='P83005',['Retrieval-based']='P83006',['Generative-based']='P83007',['User message analysis component']='P83008',['Spell checker']='P83009',['translator']='wikidata:P655',['Dialog management component']='P83010',['Ambiguity handling']='P83011',['Data handling']='P83012',['Error handling']='P83013',['Backend']='P83014',['Response generation component']='P83015',['NGSO operational challenges']='P84000',['Waveform design and access schemes']='P84001',['Software-defined satellites']='P84002',['Resource optimization']='P84003',['NGSO space missions']='P84004',['Constellation design methods']='P84005',['Inter-satellite connectivity']='P84006',['Interference management']='P84007',['Secure communications']='P84008',['In-space backhauling']='P84009',['NGSO active antenna systems']='P84010',['Satellite network slicing']='P84011',['Accuracy (Real News)']='P84012',['Accuracy (Fake News)']='P84013',['Satire News']='P84014',['User Engagements (Training size)']='P84015',['User Engagements (Testing size)']='P84016',['User Engagements (Validation size)']='P84017',['Average time length per event (in hours)']='P84018',['Average post per event']='P84019',['Maximum post per event']='P84020',['Minimum post per event']='P84021',['Twitter Results']='P85000',['Weibo Results']='P85001',['number of units']='P85002',['Satire (Training size)']='P85003',['Satire (Testing size)']='P85004',['Satire (Validation size)']='P85005',[' Misleading Content (Training size)']='P85006',[' Misleading Content (Testing size)']='P85007',[' Misleading Content (Validation size)']='P85008',[' Imposter Content (Training size)']='P85009',['Imposter Content (Testing size)']='P85010',['Imposter Content (Validation size)']='P85011',['False Content (Testing size)']='P85012',['False Content (Training size)']='P85013',['False Content (Validation size)']='P85014',['Manipulated Content (Training size)']='P85015',['Manipulated Content (Testing size)']='P85016',['Manipulated Content (Validation size)']='P85017',['Evaluation']='HAS_EVALUATION',['product or material produced']='wikidata:P1056',['Impact categories']='P86000',[' Initial pH of the treatment']='P86001',['BOD5 (mg O2⋅L−1)']='P86002',['BOD5 removal (%)']='P86003',['COD (mg O2⋅L−1)']='P86004',['COD removal (%)']='P86005',['COD /BOD5']='P86006',['TOC removal (%)']='P86007',['Turbidity removal (%)']='P86008',['Color removal (%)']='P86009',['has boundary']='wikidata:P4777',['Total Impact Category w/ Climate Change']='P86010',['CO 2eq w/o Use and EoL']='P86011',['Difference w/ Use and EoL']='P86012',['CO 2eq w/o Use and EoL WOOL KNIT SWEATER']='P86013',['CO 2eq w/o Use and EoL POLYESTER KNIT SHIRT']='P86014',['CO 2eq w/o Use and EoL cotton knit shirt']='P86015',['CO 2eq w/o Use and EoL t-shirt']='P86016',['CO 2eq w/o Use and EoL knitted fabric']='P86017',['CO 2eq w/o Use and EoL knitted fabric Nylon']='P86018',['CO 2eq w/o Use and EoL knitted fabric acryl']='P86019',['CO 2eq w/o Use and EoL knitted fabric PET']='P86020',['CO 2eq w/o Use and EoL knitted fabric elastan']='P86021',['CO 2eq w/o Use and EoL triclosan']='P86022',['CO 2eq w/o Use and EoL nanosilver-FSP']='P86023',['CO 2eq w/o Use and EoL nanosilver-plaSpu']='P86024',['Difference w/ Use and EoL wool knit']='P86025',['Difference w/ Use and EoL polyester knit shirt']='P86026',['Difference w/ Use and EoL cotton knit shirt']='P86027',['Difference w/ Use and EoL t-shirt']='P86028',['CO 2eq w/o Use and EoL knitted']='P86029',['Site selection']='P86030',['microbe']='P86031',['type of toxin']='P86032',['toxin effect']='P86033',['industry']='wikidata:P452',['field of work']='wikidata:P101',['% of respondents']='P87000',['Question Answering category']='P87001',['UML ID']='P88001',['To delete']='P89000',['radiation resolution']='P90000',['type of the paper']='P91000',['title metadata']='P91001',['author metadata']='P91002',['affiliation metadata']='P91003',['address metadata']='P91004',['email metadata']='P91005',['date metadata']='P91006',['phone number metadata']='P91007',['web or url metatada']='P91008',['degree metadata']='P91009',['ISSN metadata']='P91010',['note metadata']='P91011',['abstract metadata']='P91012',['introduction metadata']='P91013',['keyword metadata']='P91014',['page metadata']='P91015',['color shade']='P91016',['RoBERTa-BiLSTM-CRF']='P92001',['book title metadata']='P93000',['editor metadata']='P93001',['institution metadata']='P93002',['journal metadata']='P93003',['location metadata']='P93004',['pages metadata']='P93005',['publisher metadata']='P93006',['tech metadata']='P93007',['volume metadata']='P93008',['metadata dataset type']='P93009',['ref-marker metadata']='P93010',['venue metadata']='P93011',['status metadata']='P93012',['language metadata']='P93013',['organization metadata']='P93014',['number metadata']='P93015',['series metadata']='P93016',['chapter metadata']='P93017',['thesis metadata']='P93018',['school metadata']='P93019',['department metadata']='P93020',['person-first metadata']='P93021',['person- middle metadata']='P93022',['person-last metadata']='P93023',['person-affix metadata']='P93024',['number of fields ']='P94000',['number of records']='wikidata:P4876',['training records']='P94001',['testing records']='P94002',['method type']='P94003',['word feature']='P94004',['line feature']='P94005',['spatial feature']='P94006',['formatting feature']='P94007',['external feature']='P94008',['neighbor feature']='P94009',['numeric feature']='P94010',['objective key-insight']='P94011',['method key-insight ']='P94012',['result key-insight']='P94013',['conclusion key-insight ']='P94014',['background key-insight']='P94015',['related work key-insight']='P94016',['future work key-insight']='P94017',['problem key-insight']='P94018',['process key-insight']='P94019',['hypothesis key-insight']='P94020',['motivation key-insight']='P94021',['goal key-insight']='P94022',['object key-insight']='P94023',['experiment key-insight']='P94024',['model key-insight']='P94025',['observation key-insight']='P94026',['gap key-insight']='P94027',['purpose key-insight']='P94028',['challenge key-insight']='P94029',['approach key-insight']='P94030',['outcome key-insight']='P94031',['Overpotential']='P94032',['vertical depth']='wikidata:P4511',['Sampling Design']='P94033',['R-script']='P94034',['Clusters']='P95000',['Medical Relation Extraction(MRE)']='P95002',['Medical Problems']='P95003',['Total']='P95005',['underlying model']='P95006',['Zone Mapping']='P96000',['Service']='P96001',['Offering']='P96003',['Context Predicate']='P96004',['Roles']='P96005',['Users']='P96006',['precipitation height']='wikidata:P3036',['green space per capita']='P96007',['User’s accuracy']='P96008',['Producer’s accuracy']='P96009',['StudyStartDate']={'P96010','P97183'},['StudyEndDate']={'P96011','P97182','P97189'},['FirstAuthor']='P96012',['City']='P96013',['GeographicalRegion']='P96014',['StringencyIndex']={'P96015','P97188'},['PM25_prcnt_change']={'P96016','P97143','P97146'},['PM25_ugm3_Reference_avg']={'P96017','P97181','P97186'},['PM25_ugm3_Reference_sd']={'P96018','P97187'},['PM25_ugm3_Lockdown_avg']={'P96019','P97179','P97184'},['PM25_ugm3_Lockdown_sd']={'P96020','P97180','P97185'},['AdditionalDetails']='P96021',['NO2_prcnt_change']='P96022',['NO2_ugm3_Reference_avg']='P96023',['NO2_ugm3_Lockdown_avg']='P96024',['NOX_prcnt_change']='P96025',['O3_prcnt_change']='P96026',['O3_ugm3_Reference_avg']='P96027',['O3_ugm3_Lockdown_avg']='P96028',['NO2_ugm3_Reference_sd']='P96029',['CO_prcnt_change']='P96030',['CO_mgm3_Reference_avg']='P96031',['CO_mgm3_Reference_sd']='P96032',['CO_mgm3_Lockdown_avg']='P96033',['PM10_prcnt_change']='P96034',['AQI_prcnt_change']='P96035',['NO2_prcnt_change_er']='P96036',['CO_prcnt_change_er']='P96037',['PM25_prcnt_change_er']='P96038',['PM10_prcnt_change_er']='P96039',['O3_prcnt_change_er']='P96040',['O3_ugm3_Reference_sd']='P96041',['SO2_prcnt_change']='P96042',['SO2_prcnt_change_er']='P96043',['NO2_ugm3_Lockdown_sd']='P96044',['Dataset']='P96045',['Standford NLP']='P96046',['k(from KNN)']='P96047',['R']={'P96048','P96049'},['k']='P96050',['t']='P96051',['descriptive validity']='P97000',['theoretical validity']='P97001',['repeatability']='P97002',['task facet']='P97003',['research facet']='P97004',['contribution facet']='P97005',['Conference']='P97006',['Place']='P97007',['abstract-body metadata']='P97008',['abstract-heading metadata']={'P97009','P97010'},['biography metadata']='P97011',['caption']='P97012',['drop-cap']='P97013',['highlight metadata']='P97014',['drop-cap metadata']='P97015',['caption metadata']='P97016',['keyword-body metadata']='P97017',['keyword-heading metadata']='P97018',['membership metadata']='P97019',['page number metadata']='P97020',['pseudo code metadata']='P97021',['publication-info metadata']='P97022',['reader-service metadata']='P97023',['synopsis metadata']='P97024',['text-body']='P97025',['author affiliation metadata']='P97026',['author affiliation mapping metadata']='P97027',['table of content metadata']='P97028',['other metadata']='P97029',['Conference metadata']='P97030',['Place metadata']='P97031',['text-body metadata']='P97032',['geometrical feature']='P97033',['approch']='P97034',['approach benefits']='P97037',['approach advantages']='P97038',['tool']='P97039',['tool advantages']='P97040',['tool description']='P97041',['tool benefits']='P97042',['tool URL']='P97043',['similar tools']='P97044',['tool disadvantages']='P97045',['has effect']='wikidata:P1542',['challenge name']='P97046',['starting date']='P97047',['ending date']='P97048',['# round']='P97049',['tasks']='P97050',['challenge track']='P97051',['knowledge graph']='P97052',['# participants']='P97053',['challenge platform']='P97054',['ground truth provided']='P97055',['semtab systems']='P97056',['ReferenceCount']='P97058',['CitationCount']='P97059',['InfluentialCitationCount']='P97060',['IsOpenAccess']='P97061',['FieldsOfStudy']='P97062',['PublicationTypes']='P97063',['PublicationDate']='P97064',['paper:venue']='P97065',['paper:year']='P97066',['paper:referenceCount']='P97067',['paper:citationCount']='P97068',['paper:influentialCitationCount']='P97069',['paper:isOpenAccess']='P97070',['paper:fieldsOfStudy']='P97071',['paper:publicationTypes']='P97072',['paper:publicationDate']='P97073',['paper:abstract']='P97074',['source of assessment']='P97075',['Memorywise-Effortless']='P97076',['Scalable-for-Users']='P97077',['Nothing-to-Carry']='P97078',['Physically-Effortless']='P97079',['Easy-to-Learn']='P97080',['Efficient-to-Use']='P97081',['Infrequent-Errors']='P97082',['Easy-Recovery-from-Loss']='P97083',['Accessible']='P97084',['Negligible-Cost-per-User']='P97085',['Server-Compatible']='P97086',['Browser-Compatible']='P97087',['Mature']='P97088',['Non-Proprietary']='P97089',['Resilient-to-Physical-Observation']='P97090',['Resilient-to-Targeted-Impersonation']='P97091',['Resilient-to-Throttled-Guessing']='P97092',['Resilient-to-Unthrottled-Guessing']='P97093',['Resilient-to-Internal-Observation']='P97094',['Resilient-to-Leaks-from-Other-Verifiers']='P97095',['Resilient-to-Phishing']='P97096',['Resilient-to-Theft']='P97097',['No-Trusted-Third-Party']='P97098',['Requiring-Explicit-Consent']='P97099',['Unlinkable']='P97100',['Memorywise-Effortless 2']='P97101',['edition number']='wikidata:P393',['first prize']='P97102',['second prize']='P97103',['third prize']='P97104',['first prize comment']='P97105',['second prize comment']='P97106',['third prize comment']='P97107',['# core participant']='P97108',['# table']='P97109',['Knowledge Graph used for annotation']='P97110',['# column']='P97111',['# row']='P97112',['# classes']='P97113',['# predicate']='P97114',['# entity']='P97115',['Aligned with FAIR principles']='P97116',['type of table']='P97117',['# avg row']='P97118',['# avg column']='P97119',['# CEA target']='P97120',['# CTA target']='P97121',['# CPA target']='P97122',['property of the dataset']='P97123',['dataset annotation type']='P97124',['annotation challenge']='P97125',['split into']='P97126',['# accepted submission']='P97127',['# rejected submission']='P97128',['# poster']='P97129',['tabular dataset']='P97130',['column entity annotation']='P97131',['column type annotation']='P97132',['column property annotation']='P97133',['# submission']='P97134',['matching strategy']='P97135',['system module']='P97136',['table selection technique']='P97138',['label generation technique']='P97139',['spliting technique']='P97140',['co-located with']='P97147',['lesson learn']='P97148',['lesson learned']='P97149',['# DBpedia properties']='P97150',['# Schema.org property']='P97151',['# schema.org class']='P97152',['# CTA participant']='P97153',['# CEA participant']='P97154',['CPA participant']='P97155',['average F1 CEA']='P97156',['average F1 CTA']='P97157',['average F1 CPA']='P97158',['entity ']='P97159',['CTA']='P97160',['CPA']='P97161',['# annotated column']='P97162',['# data source']='P97163',['cta method']='P97164',['cea method']='P97165',['cpa method']='P97166',['participated challenge']='P97167',['computational evaluation']='P97168',['# min row']={'P97169','P97172'},['# max row']='P97173',['# min column']='P97174',['# max column']='P97175',['limit of existing']='P97176',['# NILs mention']={'P97177','P97178'},['other awarded']='P97191',['other awarded comments']='P97192',['# Avg. Rows (target CEA)']='P97193',['# Avg. Cols (target CEA)']='P97194',['# Avg. Cols (target CTA)']='P97195',['# Avg. Cols (target CPA)']='P97196',['element extracted']='P97197',['table language']='P97198',['linked cells']='P97199',['# linked cells']='P97200',['# typed cols']='P97201',['recall CEA']='P97202',['precision CEA']='P97203',['recall CTA']='P97204',['precision CTA']='P97205',['recall CPA']='P97206',['precision CPA']='P97207',['round participated']='P97208',['comment on the challenge']='P97209',['property of the system']='P97210',['Average Hierarchical Score']='P97211',['Average Perfect Score']='P97212',['official website']='wikidata:P856',['average precision CEA']='P98000',['everage precision CTA']='P98001',['average precision CTA']='P98002',['average precision CPA']='P98003',['average recall CEA']='P98004',['average recall CTA']='P98005',['average recall CPA']='P98006',['short name']='wikidata:P1813',['urban boundaries of study']='P98007',['racial groups']='P98008',['proportion to the population']='P98009',['white people']='P98010',['black people']='P98011',['number of closed question']='P98012',['number of open-ended questions']='P98013',['proportion of population']='P98014',['numeric value']={'wikidata:P1181','numericValue'},['same as ']='P98015',['quantitative value']='P98016',['f1 CEA']='P99000',['f1 CTA']='P99001',['f1 CPA']='P99002',['approximate F1-score CEA']='P99003',['approximate F1-score CTA']='P99004',['approximate F1-score CPA']='P99005',['approximate precision CEA']='P99006',['approximate precision CTA']='P99007',['approximate precision CPA']='P99008',['approximate recall CEA']='P99009',['approximate recall CTA']='P99010',['approximate recall CPA']='P99011',['group of workers']='P99012',['ah-score CTA']='P99013',['ap-score CTA']='P99014',['manual workers']='P99015',['proportion on the group of workers']='P99016',['proportion in the group of workers']='P99017',['assumption']='P99018',['ratio of jobs per working age population larger than 0.2 reached with public transport in a max. 45 minutes period']='P100000',['most important restriction to job accessibility ']='P100001',['accessibility levels']='P100002',['GINI coefficient for time of travel ']='P100003',['GINI Coefficient for number of transfers ']='P100004',['GINI coefficient for transportation costs']='P100005',['has category']={'P100006','P100007'},['is lower than accessibility for ']='P100008',['coverage annotation ratio']='P100009',['smaller']='P101000',['London\'s GINI coefficient for time of travel ']='P101001',['Sap Paulo\'s GINI coefficient for time of travel ']='P101002',['London\'s GINI Coefficient for number of transfers ']='P101003',['Sao Paulo\'s GINI Coefficient for number of transfers ']='P101004',['London\'s GINI coefficient for transportation costs']='P101005',['Sao Paulo\'s GINI coefficient for transportation costs']='P101006',['New York\'s GINI coefficient for time of travel ']='P101007',['Sao Paulo\'s GINI coefficient for time of travel ']='P101008',['New York\'s GINI Coefficient for number of transfers ']='P101009',['New York\'s GINI coefficient for transportation costs']='P101010',['ideal execution time']='P102000',['current execution time']='P102001',['pretraining architecture']='P103000',['pretraining task']='P103001',['blog post']='P103003',['Benchmark']='PWC_HAS_BENCHMARK',['Sourcecode']='P104002',['Accessibility']='P104003',['Used Upper Ontologies']='P104004',['Governing Instances']='P104005',['Maintenance']='P104006',['Latest Release']='P104007',['Description Size']='P104008',['Description Quality']='P104009',['Number of Terms']='P104010',['Used Ontologies']='P104011',['Creation Type']='P104012',['Automatic Analysis']='P104013',['Modularity']='P104014',['Extensability']='P104015',['AI paradigm']='P104016',['image resolution']='P104017',['image resized resolution ']='P104018',['# trained images']='P105000',['# test images']='P105001',['# rating']='P105002',['# user']='P105003',['# rating type']='P105004',['# movie']='P105005',['# genre']='P105006',['# rating on movie genre']='P105007',['system name']='P105008',['connectionist model']='P105009',['symbolic model']={'P105010','P105011'},['system feature']='P105012',['reasoning type']='P105013',['reasoning goal']='P105014',['ablation study']='P105015',['has use']='wikidata:P366',['optimizer']='P105017',['drop out probability']='P105018',['# epoch']='P105019',['type of inference']='P105020',['type of inference supported']='P105021',['inference engine']={'P105022','P105023','P105024'},['Review Article']='P105025',['Introduction']='P105026',['evaluation data']='P105027',['evaluation data split']='P105028',['infrastructure']='P105029',['process steps']='P105030',['provenance support']='P105031',['component model']='P105032',['has application domain']='P105033',['has corresponding pattern']='P105034',['has processing engine']='P105035',['Resource Formalism']='P105036',['resource size']='P105037',['resource type']='P105038',['has statistical model']='P105039',['has KR step 1']='P105040',['has ML step 1']='P105041',['has ML step 2']='P105042',['has ML step 3']='P105043',['has ML step 4']='P105044',['has ML step 5']='P105045',['has system maturity']='P105046',['has training type']='P105047',['has variable data 1']='P105048',['has variable data 2']='P105049',['has variable data 3']='P105050',['has variable data 4']='P105051',['has variable data 5']='P105052',['has variable data 6']='P105053',['has variable data 7']='P105054',['has variable SW 1']='P105055',['has variable SW 2']='P105056',['has variable SW 3']='P105057',['has variable SW 4']='P105058',['reports']='P105059',['altLabel']='P105060',['hasCompoundElement']='P105061',['Reasoning engine']='P106000',['Logic type']='P106001',['spelling']='P106002',['# image']='P106003',['external dataset']='P106005',['neural-symbolic model']='P106006',['rating type']='P106007',['percentage training rating']='P106008',['is review paper?']='P106009',['penetration depth [nm]']='P106011',['centralization']='P106012',['machine']='P106013',['aperture diameter']='P106014',['aperture diameter [mm]']='P106015',['distance [mm]']='P106016',['sputtering rate']='P106017',['sputtering rate [nm/s]']='P106018',['homogeneity']='P106019',['conflict resolution']='P106020',['Clustering algorithms']='P106021',['bearing type']='P106022',['bearing position']='P106023',['access control concept']='P106024',['formal description']='P106025',['element']='P106026',['relation type']='P106027',['computes solution to']='wikidata:P2159',['has engine']='P106039',['invents']='P106040',['copyright license']='wikidata:P275',['PyPI project']='wikidata:P5568',['number of testbeds']='P106041',['relation']='wikidata:P2309',['mass']='wikidata:P2067',['Kind of Research']='P107000',['radius']='wikidata:P2120',['measured physical quantity']='wikidata:P111',['drought type']='P107001',['conclusion']='P15419',['objective']='P15051',['error']='P107005',['target class']='sh:targetClass',['property']='sh:property',['path']='sh:path',['min count']='sh:minCount',['max count']='sh:maxCount',['closed']='sh:closed',['min inclusive']='sh:minInclusive',['max inclusive']='sh:maxInclusive',['pattern']='sh:pattern',['datatype']='sh:datatype',['has input var']='P108000',['has output var']='P108001',['isPreceededBy']='P108002',['component input']='P108003',['component output']='P108004',['has corresponding pattern step']='P108005',['type of environment']='P108006',['score calculation via']='P109000',['suggests']='P109001',['has_classes']='P110000',['Type of GAN']='P110001',['Network for fault classification']='P110002',['Input data type']='P110003',['Physics included']='P110004',['Contribution points']='P110005',['Evaluation metric']='P110006',['Dimensions author ID']='wikidata:P6178',['Scopus author ID']='wikidata:P1153',['Semantic Scholar author ID']='wikidata:P4012',['publication date']='wikidata:P577',['FAIR Principle']='P110007',['compliance level 1']='P110008',['compliance level 2']='P110009',['compliance level 3']='P110010',['compliance level 1 score']='P110011',['compliance level 2 score']='P110012',['compliance level 3 score']='P110013',['number of Least Concern']='P110014',['Number of Vulnerable ']='P110015',['Number of Endangered']='P110016',['Number of species Non Applicable ']='P110017',['African Dragonfly Biotic Index scores (ADBI)']='P110018',['codomain']='wikidata:P1571',['definition domain']='wikidata:P1568',['What would be the ideal Key Performance Indicators (KPIs) in the organizational design of a research institute for commercial agriculture development?']='P110019',['made from material']='wikidata:P186',['climate exposure']='P110020',['production system']='P110021',['pseudo f-measure']='P110023',['object']='P110025',['modelling software']='P110026',['simulation software']='P110027',['time period']='wikidata:P2348',['Start']='P110028',['End']='P110029',['scenarios']='P110030',['Electric Vehicles Penetration rate']='P110031',['Energy demand']='P110032',['Predictors (indipendent variables)']='P110041',['Predictors (independent variables)']='P110042',['Models (Estimators)']='P110043',['Dataset split']='P110044',['Hyperparameter tuning']='P110045',['Specific goals of the research']='P110046',['Model evaluation']='P110047',['Data observation stations']='P110048',['Time framework (planning, modeling)']='P110049',['Time step']='P110050',['AIS data']='P110051',['test machine']='P110052',['off-axis loads?']='P110053',['Did WECs occur?']='P110054',['Lubrication']='P110055',['Lubrication Regime']='P110056',['time to failure']='P110057',['loading cycles until failure']='P110058',['#wikidata:Q2995644']='P110059',['investigated relation']='P110060',['related concept']='P110061',['count of corpora\'s sentense']='P110062',['number of words']='wikidata:P6570',['BLEU']='P110063',['Translation error rate']='P110064',['Translation error rate (%)']='P110065',['source']='P110066',['has subquality type']='P110067',['ontology editor']='P110068',['required input']='P110069',['optional input']='P110070',['is automatic']='P110071',['number of standard FAIR assessments']='P110072',['standard FAIR assessments']='P110073',['custom FAIR assessments possible']='P110074',['API endpoint URL']='wikidata:P6269',['source code repository URL']='wikidata:P1324',['has application object']='P110075',['full work available at URL']='wikidata:P953',['maximum number of parameters (in million)']='P110076',['Electric Vehicle Penetration Rate(%)']='P110077',['Projected Year']='P110078',['electricity demand/consumption (GWh)']='P110079',['has Proof']='P110080',['has implementation']='P110081',['Student`s condition']='P110082',['Hand-tailored ICT']='P110083',['Offline use']='P110084',['Immersive technology ']='P110085',['Time per session with ICT']='P110086',['Mentor presence']='P110087',['Skills development ']='P110088',['point in time']='wikidata:P585',['Type of participant']='P110089',['Interview type ']='P110090',['Data management (analysis) system']='P110091',['Statistical method']='P110092',['Ontology Language']='P110093',['Sample']='P110094',['Location of sample']='P110095',['Taxonomic affiliation of isolated strain']='P110096',['Arsenite oxidation couple to']='P110097',['Strain name']='P110098',['Culture conditions']='P110099',['other results']='P110100',['genomic or gene analysis results']={'P110101','P110102'},['pointAnomaly']='P110103',['sequenceAnomaly']='P110104',['Missing rate (%)']='P110105',['single point anomaly AUC-ROC']='P110106',['multiple point anomalies AUC-ROC']='P110107',['sequence anomaly AUC-ROC']='P110108',['point anomaly AUC-ROC']='P110109',['amount of explained triples']='P110110',['amount of triples taken into account']='P110111',['main techniques used']='P110112',['reuse of other ontologies']='P110113',['domain of application']='P110114',['supported by tool']='P110115',['alternative name']='wikidata:P4970',['Electrical Current Applied?']='P110116',['Hertzian contact pressure [MPa]']='P110117',['WEC-critical lubricants used?']='P110118',['Failure occurred?']='P110119',['investigated_quality']='P110120',['measurement']='P110121',['year of measurement']='P110122',['measurement value']='P110123',['relative difference to 1990']='P110125',['task type']='P110126',['target value']={'P110127','P138014'},['raw data']='P110128',['statement']='P111000',['trend']='P111001',['relative difference']='P111002',['decrease']={'P111003','P111007','P111004','P111005','P111006','P111008'},['current year']='P111009',['comparison year']='P111010',['current value']='P111011',['answer']='P111013',['comparsion operator']='P111014',['trained parameter']='P112000',['human-readable data']='P112004',['machine-readable data']='P112005',['compliance test']='P112006',['writing language']='wikidata:P6886',['accessibility statement URL']='wikidata:P9494',['authority']='wikidata:P797',['Available Ontology Language Formats']='P112007',['Validation Method']='P112008',['diameter']='wikidata:P2386',['thickness']='wikidata:P2610',['composition']='P112009',['composition reference']='P112010',['anode']='P112011',['cathode']='P112012',['battery separator']='P112013',['nominal capacity']='P112014',['electrochemical cell']='P112015',['electric current']='P112016',['charge capacity']='P112017',['charge efficiency']='P112018',['mass loading']='P112019',['tool type']='P112021',['is fully developed']='P112022',['guidance']='P112024',['easy to use']='P112025',['time investment']='P112026',['type of input']='P112027',['applicability']='P112028',['type of output']='P112029',['improvement suggestion']='P112030',['has rendered model']='P112031',['incentive system']='P112032',['blockchain type']='P112033',['project state']='P112034',['maintains linking to']='wikidata:P10568',['approximated estimate']='P112035',['proportion']='wikidata:P1107',['sector']='P112036',['power']='P112037',['Sub-category']='P113000',['habitat']='wikidata:P2974',['cites repository']='P114000',['suggests semantic standard languages']='P114001',['Knowledge exchange']='P114002',['Information exchange']='P114003',['current collector']='P114004',['cites work']='wikidata:P2860',['percent of stimulation intensity']='P114005',['percent of stimulation intensity (min value)']='P114006',['percent of stimulation intensity (max value)']='P114007',['ecological study system']='P115000',['official name']='wikidata:P1448',['coordinate location']='wikidata:P625',['described by source']='wikidata:P1343',['continent']='wikidata:P30',['has ecological organizational scale']='P115001',['ecological organizational scale']='P115002',['start time']='wikidata:P580',['end time']='wikidata:P582',['spatial grain']='P115003',['spatial replication']='P115004',['has spatial replication']={'P115005','P115006'},['observation unit']={'P115007','P115008'},['GC-Content']={'P115009','P115011','P115012','P115013','P115014','P116001'},['Bacteria']='P115010',['energy consumption type']='P115015',['below linear trajectory']='P115016',['above linear trajectory ']='P115017',['fine-tuning task']='P116000',['test method']='wikidata:P4988',['outcome variable(s)']='P116002',['describes a project that uses']='wikidata:P4510',['medical condition']='wikidata:P1050',['main outcome measures']='P116003',['intervention duration']='P116004',['linear indicative trajectory']='P116005',['supports hypothesis']='P116006',['geographical extent']='P116007',['invader taxon']='P116008',['has ecological study design']='P116009',['Review and advance the state of knowledge regarding the evaluation of soundscape resources for landscape planning']={'P116010','P116015','P116020'},['provide a planning-oriented soundscape resource evaluation (PSRE) framework']={'P116011','P116016','P116021','P116025'},['Synthesize evidence of people’s preferences for soundscape compositions in green spaces']={'P116012','P116017','P116022'},['Examine the health and well-being values of various natural sounds']={'P116013','P116018','P116023'},['examine the values of various natural sounds, based on the effect sizes of natural sounds on human health and well-being']={'P116026','P116027'},['evaluation setting']='P116029',['slide-to-roll-ratio']='P117000',['has output statement']='P117001',['has output figure']='P117002',['has lmm fitting']='P117003',['has response variable']='P117004',['has object of interest']='P117005',['has matrix']='P117006',['is constrained by']={'P117007','P117008'},['investigation area']='P117009',['travel behavior']='P117010',['tend to reside in urban areas']='P117011',['No significant difference between young and older adults.']='P117012',['attitude towards car use']='P117013',['attitude towards walking']='P117014',['travel mode frequeny']='P117015',['travel model frequency']='P117016',['residential location']='P117017',['https://www.wikidata.org/wiki/Q58083078']={'P117018','P117051'},['more positive']='P117019',['compared to ']='P117020',['young adults']='P117021',['compared to older adults']='P117022',['has fixed effect term I']='P117023',['The type of the questionnaire']='P117024',['Type of questionnaire']='P117025',['Survey administration ']='P117026',['L2']='P117027',['Tasks to achieve the goal']='P117028',['Text collection type']='P117029',['Text collection title']='P117030',['Student degree']='P117031',['Text collection tailored']='P117032',['Texts type']='P117033',['Corpus tailored']='P117034',['Corpus/Text collection title']='P117035',['Corpus manager']='P117036',['Linguistic unit']='P117037',['Linguistic phenomena']='P117038',['Children’s Short Stories in English ']='P117039',['more likely']='P117040',['comapred to']='P117041',['multiple mobility tools']='P117042',['less likely']='P117043',['data transformation']='P117044',['data scaling']='P117045',['input shape']='P117046',['output shape']='P117047',['modeling specifics']='P117048',['has precision']='P117049',['travel mode frequency']='P117050',['corpus origin']='P117054',['corpus tiers']='P117055',['explanation ']='P117056',['sign language']='P117057',['Project title']='P117058',['Signers involved']='P117059',['signer`s requirements']='P117060',['Corpus Cardinality']='P117061',['hours of video']='P117062',['signs and phrases']='P117063',['running words']='P117064',['Number of signs and phrases']='P117065',['Number of running words']='P117066',['Number of signs']='P117067',['Number of singletons']='P117068',['captured with']='wikidata:P4082',['captured with cameras, number']='P117069',['Annotation software']='P117070',['Transcription sstem']='P117071',['Transcription system']='P117072',['number of videos']='P117073',['str1']='P117074',['str2']='P117075',['Category type']='P117076',['primary task']='P117077',['acquisition type']='P117078',['Themes']='P117079',['Bacterium']='P117080',['publisher']={'wikidata:P123','P186019','P186026','P186060','P186078'},['submitted papers']='P117081',['accepted papers']='P117082',['acceptance rate']='P117083',['part of the series']='wikidata:P179',['hasExtendedVersion']='P117084',['types of change']='P117085',['change in species due to climate change']='P117086',['allows for attribution to climate change']='P117087',['Data gathering procedure']='P117088',['Cloud computing']='P117089',['has evaluation']='wikidata:P5133',['has basic parameters']='P117090',['has medical condition']='P117091',['dependency on age ']='P118000',['has maximum at']='P118001',['dependency on age']='P118002',['declining with age']='P118003',['millenials']='P118004',[' shift from driving to transit']='P118005',['decline in personal car ownership']='P118006',['shift']='P118007',['decline']='P118008',['living conditions']='P118009',['https://www.wikidata.org/wiki/Q1404808']='P118010',['changes in residential attitudes/lifestyles']='P118012',['compared to groups of elder people']='P118013',['has evaluation tool']='P118014',['has input parameters']='P118015',['has implementation approach']='P118017',['Contributes to communication how']='P118018',['Data Access Layer']='P118019',['Defined Challenges']='P118020',['Degree of impairment']='P118021',['Experiment participants']='P118022',['research participants']='P118023',['Interface layer']='P118024',['Logic Layer']='P118025',['has control parameters']='P118026',['Performance criteria']='P118027',['contibution objective']='P118028',['Sense']='P118029',['source of AIS data']='P118030',['used software']='P118031',['research problem description ']='P118032',['methods ']='P118033',['research results']='P118034',['reccomendations for the future results']='P118035',['has languages']='P118037',['adopted language']='P118038',['Experiment phases']='P118039',['categorized in']='P118040',['type of persisten identification']='P118041',['type of persistent identification']='P118042',['1976 - 2017']='P118043',['Indicators influenced by the intervention']='P118044',['Type of intervention']='P118045',['Duration of Programme']='P118046',['Indicators for monitoring']='P118047',['residential location choice']='P118048',['prefer']='P118049',['no preference ']='P118050',['limited differences']='P118051',['has problem domain']='P118052',['has ressearch problem']='P118053',[' type of study design']='P118054',['evaluation dataset']='P118055',['Participant: deaf person']='P118056',['Participant: hard-of-hearing persons']='P118057',['Participant: normal hearing person']='P118058',['Participant: deaf-mute person']='P118059',['Participant: carer of hearing-impaired children']='P118060',['Participant: signer with different hand size']='P118061',['Participant: family with a impaired children']='P118062',['Participant: Normal hearing individuals with wind-voiced earphones']='P118063',['Participant: kindergarten-preschool children with hidden hearing status ']='P118064',['ship database']='P118065',['types ']='P118066',['contribution objective']='P118067',['school subject']='P118068',['Activities type']='P118069',['Allows self-learning']='P118070',['asynchronous learning content']='P118071',['Educational level']='P118072',['Educational strategy']='P118073',['ICT content']='P118074',['ICT services ']='P118075',['Needs an internet access']='P118076',['Allows personalization']='P118077',['Being taught']='P118078',['Participant: child with hearing implants ']='P118079',['Participat: student']='P118080',['Participant: teacher']='P118081',['Participant: schoolchild']='P118082',['category of participant']='P118083',['type of persistent identifiers']='P118084',['has fixed effect term II']='P118085',['has random effect term']='P118086',['qudt:numericValue']='P118087',['qudt:unit']={'P118088','P118089'},['country of research origin']='P119000',['Training title']='P119001',['training title abbreviation']='P119002',['students with special needs']='P119003',['Training topics']='P119004',['In-training activities']='P119005',['Training activities period']='P119006',[' Training completion criteria']='P119007',['Training place']='P119008',['Year of the training start']='P119009',['Training in-person']='P119010',['Participant: Community Learning Disability Team (CLDT) member']='P119011',['Participant: Daycare educator']='P119012',['Participant: family caregiver']='P119013',['Participant: General education art teacher']='P119014',['Participant: General education math teacher']='P119015',['Participant: Generalist teacher']='P119016',['Participant: Paraprofessional']='P119017',['Participant: psychiatrist']='P119018',['Participant: service manager']='P119019',['Participant: Special education teacher']='P119020',['Participant: Special education technician']='P119021',['Participant: Specialist teacher']='P119022',['Participant: Staff of residence with special services']='P119023',['Participant: support staff']='P119024',['Participant: trainer']='P119025',['Participant: Work with children with autism and/or developmental delay']='P119026',['occlussion level']='P119027',['Main findings']='P119028',['R601396']='P119046',['R601398']='P119047',['R601400']='P119048',['R601402']='P119049',['R601404']='P119050',['R601406']='P119051',['R601408']='P119052',['R601410']='P119053',['R601412']='P119054',['R601414']='P119055',['R601416']='P119056',['R601418']='P119057',['R601420']='P119058',['R601422']='P119059',['R601424']='P119060',['R601426']='P119061',['R601428']='P119062',['ICT measurement']='P119063',['ICT elasticity']='P119064',['start of covered period']='wikidata:P7103',['end of covered period']='wikidata:P7104',['learning environment']='P119065',['Educational model']='P119066',['education stage']='P119067',['educational group']='P119068',['academic major']='wikidata:P812',['PhD program']='P119069',['Education course']='P119070',['documentary support']='P119071',['participant: student']='P119072',['Participant: administrative staff']='P119073',['Education mode']='P119074',['has linked images']='P119076',['has result-precison']='P119077',['has result-recall']='P119078',['has result-accuracy']='P119079',['has result-others']='P119080',['similarity metric']='P119081',['literal translation']='wikidata:P2441',['Type of research paper']='P119082',['retrieved']='wikidata:P813',['temporal replication']='P119083',['statement supported by']='wikidata:P3680',['highest achieved coefficient of determination on verification or testing part']='P119086',['has evaluation result-accuracy']='P119092',['has evaluation result-f1 score']='P119096',['has evaluation result-recall']='P119097',['`has evaluation result-precision']='P119098',['forecast lead time']='P119099',['historical dataset length']='P119100',['number of parts in dataset split']='P119101',['ratio of parts in dataset split']='P119102',['endogenous predictors']='P119103',['exogenous predictors']='P119104',['missing data handling']='P119105',['has evaluation result others']='P119106',['Project type']='P119108',['Participant: country']='P119109',['Participant: University']='P119110',['Participant: others']='P119111',['Project aim']='P119112',['in-project activities']='P119113',['Project language']='P119114',['short-term objectives']='P119115',['long-term objectives']='P119116',['project outcomes']='P119117',['project start']='P119118',['project end']='P119119',['International program']='P119120',['beneficiar']='P119121',['Indirect beneficiar']='P119122',['Expece items']='P119123',['project URL']='P119124',['Educational project']='P119125',['International project']='P119126',['Project duration']='P119127',['budget']='wikidata:P2769',['Expence items']='P119128',['Main conclusion']='P119130',['number of comments']='wikidata:P10651',['number of reblogs']='wikidata:P10756',['fraction']='P119131',['Pretraining compute [PetaFLOPs-days]']='P119133',['Sampling proportion']='P119134',['Disk size']='P119135',['hardware description']='P119137',['hardware used']='P119138',['GPU Power consumption']='P119139',['Total power consumption']='P119140',['Carbon emitted']='P119141',['carbon emitted (tCO2eq)']='P119142',['replication package']='P119143',['Finetuning corpus']='P119144',['source website for the property']='wikidata:P1896',['use MARC field']='P119145',['string normalization']='P119146',['code repository (compiled)']='P119147',['evalutation dataset']='P119148',['Abstraction']='P119149',['visual features']='P119150',['Location:Country_Code']='P119151',['Location:Study_Area']='P119152',['Location:Location']='P119153',['Country Code']='P119156',['Location Name']='P119157',['Study start date']='P119158',['Study end date']='P119159',['Social project']='P119160',['Fielf of knowledge']='P119161',['Field Design']='P119162',['Soil texture']='P119163',['Soil pH']='P119164',['Intervention tested']='P119165',['Management system']='P119166',['Utilised pulse crop']='P119167',['Pulse: cultivar name']='P119168',['Pulse: sowing month']='P119169',['Pulse: Sowing between row space (cm) ']={'P119170','P119192','P119200','P119201','P119210','P119211','P119212'},['Pulse: Sowing within row space (cm)']='P119171',['Pulse: Tillage regime']='P119172',['Pulse: Maximum tillage depth (cm)']='P119173',['Pulse: Fertilisation regime']='P119174',['Pulse: N-addition (kg/ha)']='P119175',['Pulse: Pesticide application']='P119176',['Pulse: Weed management']='P119177',['Comparator']='P119178',['Biodiversity: Survey Method']='P119179',['Biodiversity: Effect dimension']='P119180',['Biodiversity: Taxon surveyed']='P119181',['Biodiversity: Unit']='P119182',['Biodiversity: Intervention (Xi) number']='P119183',['Biodiversity: Comparator (Xc) number']='P119184',['ln(Xi)']='P119185',['ln(Xc)']='P119186',['lnR']='P119187',['Crop rotation']='P119188',['Pulse: sowing density unit']='P119189',['Pulse: sowing density']='P119190',['Cover crop']='P119191',['Yield: Survey Method']='P119193',['Yield: Effect dimension']='P119194',['Yield: Unit']='P119195',['Yield: Intervention (Xi) number']='P119196',['Yield: Comparator (Xc) number']='P119197',['Intercrops']='P119198',['descriprion']='P119199',['Soil quality: Survey Method']='P119202',['Soil quality: Soil sample depth (max. cm)']='P119203',['Soil quality: Effect dimension']='P119204',['Soil quality category']='P119205',['Soil quality grouped indicator']='P119206',['Soil quality exact indicator']='P119207',['Soil quality: Unit']='P119208',['Soil quality: Intervention (Xi) number']='P119209',['Field of knowledge']='P119213',['number of NVD descriptions']='P119214',['orkgSubmitter']='P119215',['BERT fixed in training']='P119216',['continual knowledge infusion']='P119217',['has evaluation result']='P119218',['Abnormality-AUC']='P119219',['Disease-AUC']='P119220',['Dice score']='P119221',['fusion level']='P119222',['model size']='P119223',['Authors: Country']='P119224',['Oldest reference']='P119225',['Newest reference']='P119226',['contribution aim']='P119227',['Software developed']='P119228',['Contribution goal']='P119229',['Computational method used']='P119230',['Method developed']='P119231',['Prospects of future research']='P119232',['Neural network developed']='P119233',['Neural network type']='P119234',['research application']='P119235',['native label']='wikidata:P1705',['Evaluation metics']='P119236',['curated problems']='P119237',['citing bergen bullying research group papers']='P119238',['Using Negative Acts Questionnaire-Revised (NAQ-R)']='P119239',['training time, s']='P120001',['Galiciana work ID']='wikidata:P3004',['R-Square']='P120002',['Pearson Correlation Coefficient PCC']='P120003',['Average Margin of Error - AME']='P120004',['temporal resolution of observations']='P120005',['extreme values choice']='P120006',['temporal downscaling']='P120007',['probability distribution']='P120008',['model calibration']='P120009',['sampling rate']='wikidata:P11413',['intensity duration frequency formula']='P120010',['primary processing of rainfall data']='P120011',['maximum series contruction']='P120012',['assumption of time series behaviour']='P120013',['Cites']='P121000',['CitesURL']='P121001',['GSRank']='P121002',['QueryDate']='P121003',['CitationURL']='P121004',['StartPage']='P121005',['EndPage']='P121006',['ECC']='P121007',['CitesPerYear']='P121008',['CitesPerAuthor']='P121009',['AuthorCount']='P121010',['spatial downscaling']='P121011',['Soil quality Parameter']='P121012',['uncertainty estimation']='P121013',['recorded AIS data']='P121014',['recorded trajectories']='P121015',['processed AIS data']='P121016',['processed trajectories']='P121017',['number of ships']='P121018',['ship type']='P121019',['voltage']='wikidata:P2436',['Electric Field (kV/mm)']='P121020',['has list element']='hasListElement',['authors']='hasAuthors',['Conference name']='P122000',['Conference date']='P122001',['Conference code']='P122002',['Funding Text 1']='P122003',['Funding Details']='P122004',['Author full names']='P122005',['evaluation criteria']='P122006',['evaluation aspect']='P122007',['Total Students']='P122008',['conducted exams']='P122009',['Used LLMs']='P122010',['Precision/recall/balanced']='P122011',['covered languages']='P123000',['language type']='P123001',['evaluated task']='P123002',['NLP Tasks for evaluation']='P123003',['benchmarked datasets']='P123004',['studied by']='wikidata:P2579',['Selected Problems']='P123006',['problem topics']='P123007',['designed prototype for evaluation']='P123009',['catchment area']='P123011',['design storm']='P123012',['duration of design storm']='P123013',['return period']='P123014',['calibrated parameters']='P123015',['LID practices']='P123016',['most efficient LID practices']='P123017',['return period of storm']='P123018',['reduction of peak runoff']='P123019',['reduction of runoff volume']='P123020',['observed rainfall event']='P123021',['creation of IDF curves from historical data ']='P123022',['creation of IDF curves from climate model output']='P123023',['model calibration on observed rainfall event']='P123024',['model verification on observed rainfall event']='P123025',['multivariate frequency analysis']='P123026',['camera pose']='P123027',['number of lanes']='wikidata:P10367',['segmentation']='P123028',['trajectories']='P123029',['dashboard developer country']='P123030',['source of data']='P123031',['level of data granularity']='P123032',['main indicators of COVID-19']='P123033',['ancillary indicators of COVID-19 (other)']='P123034',['data processing']='P123035',['data sources']='P123036',['Threats To Validity']='P123037',['Research Object']='P123038',['primary area']='P123039',['benchmark name']='P123040',['data samples']='P123041',['total ability']='P123042',['reasoning abilities']='P123043',['reasoning abilities (L2)']='P123044',['evaluated models on MMBench']='P123045',['training method']='P123046',['total ability task']='P123047',['Output data type']='P123048',['references work, tradition or theory']='wikidata:P8371',['additional information']='P123049',['Open question']='P123050',['future direction']='P123051',['tool useses AI']='P124000',['evaluation uses AI']='P124001',['System Usability Score']='P124002',['ethical risks']='P124003',['paper eligibility criteria']='P125000',['paper exclusion criteria']='P125001',['article type']='P126002',['Authors` Keywords']='P126003',['managing']='P126004',['application used']='P126005',['educational subject']='P126006',['educational specialty']='P126007',['beneficiary']='P126008',['concerns distance education (y/n)']='P126009',['Research outcome']='P126010',['type of research outcome']='P126011',['number of languages']='P126012',['has hypothesis test (invasion biology)']='P126013',['test score']='wikidata:P5022',['is conclusive']='P126014',['considers socio-political factor']='P126015',['has sector']='P126016',['has socio-policital factor type']='P126017',['has representation type']='P126018',['has tagged value']='P127000',['has tag']='P127001',['Data Preprocessing']='P127002',['Recall (%)']='P127003',['Data Preparation']='P127004',['AIS data ']='P127005',['trajectories points']='P127006',['expression, gesture or body pose']='wikidata:P6022',['category contains']='wikidata:P4224',['has current density J [A/mm²]']='P127007',['number of ctiteria']='P127009',['warehouse type']='P127010',['container type']='P127011',['Data model']='P127012',['Data origin']='P127013',['transport type']='P127014',['Modes of shipment']='P127015',['Conrtibutio research actuality']='P127016',['R Packages']='P128000',['input data type - observation stations']='P128001',['input data type - model output']='P128002',['real-time prediction']='P128003',['short term prediction']='P128004',['mid term prediction']='P128005',['long term prediction']='P128006',['simultaneous usage of endogenous and exogenous predictors']='P128007',['multioutput model and/or chain model']='P128008',['absolute performance metrics - mean absolute error and/or root mean square error']='P128009',['relative performance metrics - coefficient of determination and/or Nash-Sutcliffe efficiency ']='P128010',['comparison of model and observations']='P128011',['model vs. observations']='P128012',['high tide events']='P128013',['input and/or output data type - observation stations']='P128014',['high water events']='P128015',['Data Cleaning']='P128016',['is considered in']='P128017',['belongs to']='P128018',['Deep Learning Model']='P129000',['Knowledge Graph Creation Approach']='P129001',['Knowledge Graph Completion']='P129002',['Results/ Benefits']='P129003',['created_web_Application']='P129004',['Knowledge Graph creation tool']='P129005',['has invasion biology research questions']='P129006',['research_area']='P129007',['graph_creation_method']='P129008',['disease severity']='P129009',['cell concentration']='P129010',['species']='P129011',['organ']='P129012',['cell marker']='P129013',['results of patient groups']='P129014',['marker for cell identification']='P129015',['action marker']='P129016',['in-vivo']='P129017',['frequency of activated T helper cells']='P129018',['correlation found']='P129019',['single- plamid based genetic tool ']='P129020',['available data']='P129021',['uses_ontolology']='P129022',['syntactic_module']='P129023',['Levenshtein similarity']='P129024',['word_embeddings']='P129025',['semantic_module']='P129026',['post-processing']='P129027',['Country/Region']='P129028',['object of visualiztion']='P129029',['object of virtualiztion']='P129030',['type of object visualized']='P129031',['type of object virtualized']='P129032',['technology used']='P129033',['application technology']='P129034',['devices to be used']='P129035',['is a building?']='P129036',['Object`s cration time/period']='P129037',['cause of damage (changes)']='P129038',['modelling approach']='P129039',['Historical edidences']='P129040',['Stable isotope analysis ']='P129041',['uav']='P129042',['aerial view']='wikidata:P8592',['Aerial mapping']='P129043',['native species']='P129044',['cytokine overexpression']='P129045',['methodological context']='P129046',['object title']='P129047',['type of the pbject']='P129048',['object is a part of']='P129049',['period of object`s origin']='P129050',['historic photo']='P129051',['Historic map']='P129052',['Historic flight photos']='P129053',['historical engineering drawings']='P129054',['historical steel catalogues']='P129055',['ршіещкшсфд technical reports']='P129056',['historical technical reports']='P129057',['historical plan']='P129058',['historical letters']='P129059',['diary']='P129060',['historical drawing']='P129061',['painting']='P129062',['historical engraving']='P129063',['historical land records']='P129064',['information modelling methodology']='P129065',['cause of destoyed']='P129066',['period of damage']='P129067',['obect exists in any condition']='P129068',['released on']='P130000',['recognition type']='P130001',['ensemble technique']='P130002',['peak streamflows']='P130003',['higher education institution country']='P130004',['Number of objects examined']='P130005',['type of object']='P130006',['accessibility evaluation tool']='P130007',['objetives']='P130008',['rules violation checked (y/n)']='P130009',['success criteria']='P130010',['top-three violations']='P130011',['Web Content Accessibility Guidelines Version']='P130012',['Level (A / AA / AAA)']='P130013',['key feature']='P130014',['evaluated models on proposed benchmark']='P130015',['clustering visualization']='P130016',['Adjusted random index (ARI)']='P130017',['Fowlkes–Mallows index (FMI)']='P130018',['Six Degrees of Francis Bacon ID']='wikidata:P2401',['collection or exhibition size']='wikidata:P1436',['website type']='P130019',['top mistakes']='P130020',['research period']='P130021',['paired supervisor and phd students']='P130022',['workstations']='P130024',['Twitter']='P130025',['has number of modules']='P130026',['Ontology Evaluation']='P130027',['Domain specific task']='P130028',['specific domain ']='P130029',['Infection Rate']='P130030',['Data Exfiltration ']='P130031',['Resistance']='P130032',['Detection Avoidance']='P130033',['Attack Vector Flexibility']='P130034',['Hack Tool']='P130035',['major elements']='P130036',['Layer Perspective']='P130037',['focuses on']='P130038',['managed by']='P130039',['development phases']='P130040',['neurodevelopmental features']='P130041',['Missing time period']='P130042',['anomaly detection']='P130043',['Total benchmarks']='P130044',['GNN Type']='P130045',['LLM Type']='P130046',['prompting']='P130047',['related domain']='P130048',['level of task']='P130049',['type of enhancement']='P130050',['Evaluation Datasets']='P130051',['research direction']='P131000',['covered approaches']='P131001',['key techniques']='P131002',['placeholder']='placeholder',['Used Graph']='P132000',['pressure']='P132001',['CAS Registry Number']='wikidata:P231',['pressure unit']='P132002',['chemical formula']='wikidata:P274',['Class entropy']='P132003',['Norm. entropy']='P132004',['Mutual information']='P132005',['Noise Signal Ratio']='P132006',['Mean and standard values ']='P132007',['mean noise to signal ratio']='P132008',['normal entropy']='P132009',['mutal information']='P132010',['Covariance']='P132011',['statistical mesasures']='P132012',['a']='P132013',['Quantitative analysis of raw material extraction in Latin America']='P132014',['Meta Data from Worldbank, CEPAL, UN Comtrade']='P132015',['Quantitative comparison of 15 Latin American countries (mining/production and exports)']='P132016',['Extractivism takes on very different intensities and dynamics in the region and can be categorised into four regional clusters (extreme extractivism, intensive extractivism, partial extractivism and weak extractivism).']='P132017',['Literature Review']='P132018',['The paper begins with an overview of the development theory and policy debates on the commodity-based development model and the implementation of indigenous rights. Finally, the question of whether sustainable practices of indigenous groups should be understood as an expression of their specific culture and whether these types of economic activity are relevant and realisable as models for a larger social context will be explored.']='P132019',['The relationship between resource-based developments and the implementation of indigenous autonomy rights has hardly been analysed to date. Numerous studies in the research field emphasise the importance of the recognition of indigenous rights for processes of social decolonisation and democratisation and identify their guarantee as a central prerequisite for the protection of ecologically sensitive regions (e.g. Bebbington et al. 2018). protection of ecologically sensitive regions. However, they often tend to focus indigenous groups in conflicts over land and resources on the defence of \"traditional ways of life\" and a \"harmonious relationship with nature\" and thus run the risk of ignoring important objectives which, in addition to the defence of land and raw materials, can also include coping with social change and improving the general living conditions of the affected population groups.']='P132020',['convariance']='P132021',['Mean absolute deviation']='P132022',['haslocation']='P132023',['Item type']='P132024',['URLs']='P132025',['PMID']='P132026',['subtask']='P132027',['Overshooting 1.5°C is fast becoming inevitable. Minimising the magnitude and duration of overshoot is essential']='P132028',['located in the administrative territorial entity']='wikidata:P131',['Insight 1']='P132029',['length']='wikidata:P2043',['Gloabal avarage tempreture']='P133000',['Global average temperature']='P133001',['Best_practices']='P133002',['Advanced_strategies']='P133003',['said to be the same as']='wikidata:P460',['mitigation strategies']='P134000',['farming stage']='P134001',['activities/factors']='P134002',['activities or factors']='P134003',['preharvesting parameter']='P134004',['important features']='P134005',['classification classes defined for the features']='P134006',['dataset used (public or own)']='P134007',['total numbers of images used for training']='P134008',['best model or method or algorithm']='P134009',['model evaluation technique']='P134010',['disease name']='P134011',['focal length']='wikidata:P2151',['focal length during strain']='P135000',['focal length [mm]']='P135001',['focal length during strain [mm]']='P135002',['relative focal length change (%)']='P135003',['toughness']='wikidata:P5520',['characteristics of communication']='P135004',['requirements for communication']='P135005',['use case class']='P135006',['considers failures in power grid']='P135007',['type of algorithm / methodology']='P135008',['geographical area']='P135009',['number of communication participants']='P135010',['frameworks']='P135011',['performance indicators power grid']='P135012',['objective for considering communication']='P135013',['communication modelling approach']='P135014',['description communication modelling approach']='P135015',['uses external framework']='P135016',['considers state of communication network']='P135017',['considers stochastical elements']='P135018',['performance indicators communication']='P135019',['communication technologies']='P135020',['considers communication failures']='P135021',['overlay topology']='P135022',['Dependencies between communication and energy systems']='P135023',['description of the use case']='P135024',['communication properties']='P135025',['communication requirements']='P135026',['type of algorithm/methodology']='P135027',['organizational structure']='P135028',['considers communication network state']='P135029',['considers stochastic elements']='P135030',['communication topologies']='P135031',['communication failures']='P135032',['type of potential']='P135033',['wind speed data']='P135034',['turbine height min']='P135035',['turbine height max']='P135036',['number of turbines']='P135037',['rotor diameter min']='P135038',['rotor diameter max']='P135039',['turbine capacity min']='P135040',['turbine capacity max']='P135041',['close match']='P135042',['has latent variables']='P135043',['has regressions']='P135044',['has variances and covariances']='P135045',['venue serie']='P135046',['allows graph view']='P135047',['uses embeddings']='P135048',['provides UI']='P135049',['allows editing']='P135050',['allows source attribution']='P135051',['ontology based']='P135052',['has lmm significance testing']='P135053',['has anova']='P135054',['has lmm prediction']='P135055',['has linear regression']='P135056',['DBLP author ID']='wikidata:P2456',['ResearcherID']='wikidata:P1053',['area of expertise']='P135057',['ACM Digital Library author ID']='wikidata:P864',['Arnet Miner author ID']='wikidata:P5776',['Google News topics ID']='wikidata:P5337',['Loop ID']='wikidata:P2798',['Property 1']='P136000',['Property 2']='P136001',['paper:allows_editing']='P136003',['paper:external_ontology_support']='P136004',['paper:provides_GUI']='P136005',['paper:scientific_relation']='P136006',['paper:uses_embeddings']='P136007',['paper:provides_confidence_score']='P136008',['paper:links_source_information']='P136009',['Multiplatform']='P136010',['Multiple user roles']='P136011',['Multiple user support']='P136012',['Project auditing']='P136013',['Project progress']='P136014',['Authentication']='P136015',['Status of software']='P136016',['Automated full-text retrieval']='P136017',['Automated search']='P136018',['Snowballing']='P136019',['Manual reference importing']='P136020',['Manually attaching full-text']='P136021',['Manually inserting full-text']='P136022',['Reference importing']='P136023',['Deduplication']='P136024',['Discrepancy resolving']='P136025',['In-/excluding references']='P136026',['Reference labelling & comments']='P136027',['Screening phases']='P136028',['Exporting results']='P136029',['Flow diagram creation']='P136030',['Living/updatable']='P136031',['Free to use']='P136032',['Systematic literature review stage']='P136033',['Restoration intervention type']='P136034',['Time since restoration']='P136035',['monitoring duration']='P136036',['main species']='P136037',['environmental disturbance']='P136038',['reason for restoration']='P136039',['soil property']='P137000',['dataset features']='P137001',['machine learning objective']='P137002',['machine learning algorithm']='P137003',['machine learning algorithms/methods']='P137004',['relevancy estimation']='P138000',['based on human rating']='P138001',['based on dataset']='P138002',['based on paper']='P138003',['properties for this type']='wikidata:P1963',['water property']='P138004',['animal specie']='P138005',['crop name']='P138006',['clicked']='P138007',['read']='P138008',['cited']='P138009',['liked']='P138010',['relevancy']='P138011',['other user']='P138012',['other automatic']='P138013',['evaluation measures']='P138015',['MRR']='P138016',['Wikidata language code']='wikidata:P9753',['stated in']='wikidata:P248',['Candidate_facet_generation']='P139000',['candidate_facet']='P139001',['direct_property']='P139002',['indirect_property']='P139003',['path_length']='P139004',['Categorical Facets']='P139005',['Quantitative Facets']='P139006',['facet_types']='P139007',['Candidate_facets']='P139008',['Facet_selection']='P139009',['Intra-Facet Metrics']='P139010',['paper_link']='P139011',['Inter-Facet Metrics']='P139012',['facet extraction']='P139013',['facet values extraction']='P139014',['semantic similarity']='P139015',['parameters for value cardinality scoring']='P139016',['predicate probability']='P139017',['Suggested action']='P140000',['Selection of viewpoints']='P140001',['Rotating field of view']='P140002',['Optic Flow']='P140003',['Velocity profile']='P140004',['Scale of space']='P140005',['Human activity']='P140006',['Expending energy while moving']='P140008',['sustainable development goal']='sustainableDevelopmentGoal',['has restoration method']='P140009',['has ecosystem type']='P140010',['has degradation type']='P140011',['ML/DL method']='P140013',['Insight']='P140014',['Insight on Carbon Dioxide']='P140015',['insight on climate change and immobility']='P140016',['Insight on extreme weather']='P140017',['Insight on Food system transformation']='P140018',['Insight on Health impact']='P140019',['Insight on critical climate thresholds 1.5 degree']='P140020',['SLR Task']='P140021',['Human Interaction']='P140022',['Text Representation']='P140023',['Minimum Requirement']='P140024',['Model Execution']='P140025',['Pre-screening Support']='P140026',['Post-Screening Support']='P140027',['paper:contribution']='P140028',['SLR stage']='P140029',['R0 value']='P140030',['CI-values']='P140031',['investigated part']='P141000',['Precursors or molecules used']='P141001',['Range of substrate/deposition temperatures']='P141002',['Growth Rate']='P141003',['film thickness']='P141004',['film density']='P141005',['refractive index']='P141006',['Electrical Properties']='P141007',['Chemical Composition']='P141008',['Mechanical Properties']='P141009',['surface roughness']='P141010',['Gas Permeability']='P141011',['summary insight']='P142000',['has heat treatment/coating']='P142001',['has base oil']='P142002',['has additive']='P142003',['has viscosity']='P142004',['rpm']='P142005',['machine used']='P142006',['WEC initiation mechanism']='P142007',['IUCN realm']='P142008',['IUCN biome']='P142009',['IUCN EFG']='P142010',['degradation type']='P142011',['supports WEC initiation mechanism']='P142012',['has morphological result']='P142013',['has methodological result']='P142014',['microstructure']='wikidata:P5589',['Symbolic Representation']='P142015',['Human-in-Loop']='P142016',['Trustworthiness']='P142017',['Explainability']='P142018',['Transparency']='P142019',['local name']='P142020',['food type']='P142021',['food form']='P142022',['scientific name']='P142023',['common name']='P142024',['has listed ingredient']='wikidata:P4543',['importance']='P142025',['food image']='P142026',['context aware features']='P142028',['popularity features']='P142029',['FH-BU algorithm']='P142030',['FH-TD algorithm']='P142031',['Summery insoght']='P142034',['yearly change']='P142035',['site coordinates']='P142036',['hasDataset']='P142037',['country of sample']='P142038',['kind of human sample']='P142039',['definition of polarization']='P142040',['secondary data source']='P142041',['political topic assessed']='P142042',['type of media']='P142043',['summary of findings']='P142044',['type of polarization assessed']='P142045',['polarization measurement']='P142046',['human sample type']='P142047',['Computer-based format']='P142048',['type of corpus research']='P142049',['corpus volume']='P142050',['corpus source']='P142051',['Corpus elements type']='P142052',['DL model']={'P142053','P142054'},['DL method']='P142055',['ML algorithm']='P142056',['used features']='P142058',['mythology']='P142059',['bilingual corpora used']='P142060',['Sign language translated']='P142061',['Proposed Dataset']='P143000',['Researsh problem']='P143001',['recommendation']='P143002',['Study species']='P143003',['Species\' climate']='P143004',['study findings']='P143005',['ethics considerations']='P143006',['Latitude range']='P143007',['no. of facets k']='P143008',['average execution time']='P143009',['user study questions']='P143010',['Experiment queries']='P143011',['user ratings']='P143012',['facet selection and/or ranking']='P143013',['keyword queries']='P143014',['Veterans` needs']='P143015',['How to help Veterans']='P143016',['Women Veterans']='P143017',['covid-19 audio related symptom']='P143018',['Mean Reciprocal Rank (MRR)']='P143019',['TechQA dataset']='P143020',['Baseline (Elastic Search)']='P143021',['DFS (Dynamic facet search) Flat']='P143022',['DFS (Dynamic facet search) Typed']='P143023',['Dictionaries evaluated']='P143024',['Dictionary']='P143025',['Visual representation of the entries']='P143026',['Entries type']='P143027',['research methodology']='P143028',['research findings']='P143029',['research limitations']='P143030',['Statistical analyses']='P143031',['LDA score cutoff']='P143032',['Number of sites']='P143033',['Parameter estimation method']='P143034',['Goodness of fit']='P143035',['Benchmark Description']='P143036',['Benchmark Methodology']='P143037',['throughput']='wikidata:P2957',['CAD Affliation Neutral']='P144000',['CAD Identity Directed Hate']='P144001',['CAD Affliation Directed Hate']='P144002',['LTI Person Directed Neutral']='P144003',['LTI Person Directed Hate']='P144004',['Derogatory Slur']='P144005',['Not Derogatory Slur (NDG)']='P144006',['Homonym (HOM)']='P144007',['Hateful']='P144008',['Offensive']='P144009',['Normal']='P144010',['Undecided']='P144011',['mAP']='P144012',['A subset of the OMG Enterprise SQL Schema with 199 Tables, selecting 13 tables for the benchmark ']='P144014',['schema']='P144015',['question/answer pairs']='P144016',['Survey questions']='P144017',['Survey respondents']='P144018',['Model name']='P144019',['Physical parameter']='P144020',['shape']='wikidata:P1419',['height']='wikidata:P2048',['width']='wikidata:P2049',['Physical Properties']='P144022',['nominal voltage']='P144023',['Upper voltage limit']='P144024',['Lower voltage limit']='P144025',['original_article']='P144026',['orkg_paper']='P144027',['reborn_paper_production']='P144028',['reborn_data_production']='P144029',['reborn_production']='P144030',['first_author']='P144031',['published_in']={'P144032','P144033'},['original_research_finding']='P144034',['orkg_template']='P144035',['data_analysis_method']='P144036',['json_data']='P144037',['mentioned']='P145000',['COVID-19 Target']='P145001',['Potent In Drugs']='P145002',['Constrain the relations with:']='P145003',['collaboration']='P145004',['strengths']='P145005',['reborn_deposition']='P145006',['data_repository']='P145007',['doi_interlinking']='P145008',['uri']='P145009',['uri_interlinking']='P145010',['reborn_collection']='P145011',['method name']='P145012',['research topic']='P145013',['paper title']='P145014',['aim ']='P145015',['image_type']='P145016',['image transformation strategy']='P145017',['image transformation methods']='P145018',['image detection strategy']='P145019',['image detection method']='P145020',['detection criteria classification']='P145021',['WEC influence']='P145022',['observed feature']='P145023',['type of influence']='P145024',['influenced feature']='P145025',['WEC risk increases']='P145026',['user responses']='P145027',['overall agreement between survey users and system']='P145028',['average result']='P145029',['Fleiss Score']='P145030',['Facets']='P145031',['MAP_score']='P145032',['F_score']='P145033',['level of facet categories (max_l)']='P145034',['maximum number of facet terms at the top-level, i.e. level 2']='P145035',['look-ahead parameter d of the top-down method']='P145036',['Input type of KG']='P145038',['R691895']='P145039',['estimated Model (in Latex)']='P145040',['Elasticity']='P145042',['Level of Aggregation']='P145043',['N/Year']='P145044',['Output Measure']='P145045',['Robustness of Method']='P145046',['GPT (General Purpose Technology) Approach']='P145047',['GPT Conclusion']='P145048',['Form of data']='P145049',['TFP Growth Residual']='P145050',['Price Deflator Used']='P145051',['key new insights']='P145052',['Output type']='P145054',['Resource abstraction']='P145055',['Workflow orchestration']='P145056',['Data serialisation and storage']='P145057',['Experimental provenance']='P145058',['failed component']='P145059',['Hydrogen']='P145060',['hydrogen concentration']='P145061',['key messages']='P145062',['recommendations']='P145063',['contribution:research_question']='P145064',['contribution:base_model']='P145065',['contribution:estimated_formular']='P145066',['contribution:statistical_method_main']='P145067',['contribution:model_1']='P145068',['contribution:estimated_formular_addition']='P145069',['statistical_method_main']='P145070',['Insights']='P145071',['TL;DR']='P145072',['invasive / non-invasive']='P145073',['glucose sensors']='P145074',['funtional ingredient']='P145075',['electrospinning process']='P145076',['detection method']='P145077',['language of work or name']='wikidata:P407',['01 - Research Question']='P146000',['05 - Observation Unit Level']='P146001',['06 - Model 1']='P146002',['07- Model 2']='P146003',['07 - Model 2']='P146004',['08 - ICT Measurement']='P146005',['09 - Sample Size']='P146006',['10 - Data Source']='P146007',['11 - Data Structure']='P146008',['12 - Limitations']='P146009',['02 - Key Results']='P146010',['03 - Region']='P146011',['04 - Period']='P146012',['measuring parameter']='P146013',['power consumption (μW)']='P146015',['operating tempreature range (°C)']='P146016',['tolerance']='P146017',['protocol']='wikidata:P2700',['compiledBy']='P146018',['LandingPage']='P146019',['ArtefactType']='P146020',['Marital Status']='P147000',['LGA']='P147001',['Clinic Stage']='P147002',['TB status']='P147003',['Pregnancy']='P147004',['Breastfeeding']='P147005',['Care Facility']='P147006',['Appointment Date']='P147007',['Baseline Weight']='P147008',['occupation']='wikidata:P106',['metrics']='P147010',['math format ']='P147011',['learning paradigm']='P147012',['pre-training language model']='P147013',['training data type']='P147014',['backbone']='P147015',['specific lubrication film thickness λ']='P147016',['Naive']='P147017',['Trained - Elo only']='P147018',['Trained - All metrics']='P147019',['Trained - All units']='P147020',['methodology']='P147021',['size of reference scenario']='P147022',['disaster management circle step']='P147023',['Research goal']='P147024',['meta model']='P147025',['(meta) model']='P147026',['matrix']='P147027',['filler']='P147028',['fabrication method']='wikidata:P2079',[' weight percentage ']='P147029',['Young’s Modulus (GPa)']='P147030',['Tensile strength (MPa) ']='P147031',['Fracture strain (%)']='P147032',['duration (week)']='P147033',['drug']='P147034',['dose (mg)']='P147035',['mean age']='wikidata:P4442',['mean (SD) change in function']='P147037',['mean baseline MMSE']='P147038',['functional performance measure']='P147039',['quality rating']='P147040',['sign vocabulary']='P147041',['signing type']='P147042',['S/B (single handed /both handed)']='P147043',['classification methods']='P147044',['features extracted']='P147045',['# subject tested']='P147046',['recognition rate (%)']='P147047',['sign vocabular']='P147048',['# subjects test']='P147049',['experiment condition']='P147051',['image processing techniques']='P147052',['test area']='P147053',['years of data']='P147054',['Limitations / difficulties']='P147056',['limit of detection (CFU mL−1)']='P147057',['response time ']='P147058',['input drug type']='P147059',['relationship data type']='P147060',['number of CT scans']='P147061',['ACC/AUC']='P147062',['carbon budget']='P147063',['emission reduction targets']='P147064',['efforts']='P147065',['energy role']='P147066',['renewable energy growth']='P147067',['prediction of challenges']='P147068',['growing coal capacity']='P147069',['predicted year of emmision reduction']='P147070',['emission projected']='P147071',['growing emission projected ']='P147072',['starting of growing emissions in year']='P147073',['countries with increasing coal production']='P147074',['system description']='P147075',['llms used']='P147076',['Edge detection and image enhancement techniques']='P147077',['satellite']='P147078',['astronomical image type']='P147079',['astronomical image detection strategy']='P147080',['astronomical image transformation methods']='P147081',['microbiological detection techniques']='P147082',['microbiological method type']='P147083',['cumulative frictional energy']='P148000',['extreme weather events']='P148001',['extreme weather events on health']='P148002',['threatens']='P148003',['future projection']='P148004',['future projections']='P148005',['future predictions']='P148006',['predicted in year']='P148007',['policy recommendations']='P148009',['temperature ranges for tipping elements']='P148011',['temperature ranges for tipping points']='P148012',['climate tipping element']='P148013',['affects 1-3°C']='P148015',['affects 3-5°C']='P148016',['affects beyond 5°C']='P148017',['negative affects on places 1-3°C']='P148018',['negative affects on places 3-5°C']='P148019',['negative affects on places beyound 5°C']='P148020',['negative affects on places beyond 5°C']='P148021',['sea level rise projection']='P148023',['Meet Paris Agreement targets 1.5°C']='P148024',['economic impact on low-income countries']='P148025',['The Contribution of Information Technology to Consumer Welfare']='P148026',['climate change effects']='P148027',['pollution cost']='P148028',['emission trend']='P148029',['emission trend in vulnerable regions']='P148030',['international support']='P148031',['investment']='P148033',['global GDP']='P148034',['global coverage']='P148035',['type of extreme weather']='P148036',['regional impact']='P148037',['specific regions']='P148038',['Economic and Social Implications']='P148039',['special events in year 2017']='P148040',['specific events in year 2017']='P148041',['environmental changes']='P148042',['record high temperature']='P148043',['rise vulnerability']='P148044',['Record-Breaking Statistics']='P148045',['record-breaking statistic']='P148046',['specific events']='P148047',['impact on water']='P148048',['climate risks']='P148049',['social inequality']='P148050',['governance actions']='P149000',['key challenges']='P149001',['specific points']='P149002',['Cause of Earth\'s heat']='P149003',['global warming reasons']='P149004',['sea level rising projection']='P149005',['future impact']='P149006',['contributing elements']='P149007',['geographical domain']='P149008',['unprecedented acidification rates']='P149009',['relates from']={'P149011','P149021'},['has format']={'P149010','P149016','P149024'},['versionInfo']={'P149013','P149012'},['has support URL']={'P149014','P149018'},['is implemented by']='P149015',['seeAlso']='P149017',['relates to']='P149019',['uses software']='P149020',['has member']='P149022',['executes']='P149023',['difference between']='P149025',['Study Description']='P149026',['Percent of Man among participants']='P149027',['Intimate Partner Violence Prevalence']='P149028',['Intimate Partner Violence Assessment']='P149029',['Risk of bias']='P149030',['Intimate Partner Violence Prevalence. Perpetration']='P149031',['Intimate Partner Violence Prevalence. Victimization']='P149032',['affected regions']='P149033',['climate change triggers']='P149034',['risk of large-scale migration from year']='P149035',['water crisis causing global migration ']='P149036',['peak of human mobility in year']='P149037',['predicted year of barriers to mobility']='P149038',['migration patterns']='P149039',['seasonal changes']='P149040',['frequency of extreme events']='P149041',['sign recognition']='P149042',['sign animation']='P149043',['parser used']='P149044',['gesture recognition']='P149045',['gesture animation']='P149046',['dataset size (sentences)']='P149047',['Speaking measure']='P149048',['Claim made by author about findings']='P149049',['The mixed methods appraisal tool (MMAT) commentary and trustworthiness identificator']='P149050',['Study duration']='P149051',['General outcomes']='P149052',['Claim made by author about findings. Attitude']='P149053',['The mixed methods appraisal tool (MMAT) trustworthiness identificator. ']='P149054',['impact of food sector on CO2']='P149055',['Food impact on greenhouse gas emissions']='P149056',['Food sector impact on global warming']='P149057',['Rising greenhouse gas emissions']='P149058',['The mixed methods appraisal tool (MMAT) commentary']='P149059',['key solutions']='P149060',['prediction of people facing hunger']='P149061',['Animal-assisted interventions Terminology']='P149062',['Session duration']='P149063',['Session number']='P149064',['Session length']='P149065',['measuring instrument']='P149066',['number of time series']='P149067',['wind rose presence']='P149068',['number of objects the Business Model Canvas applied to']={'P150000','P150001'},['business or process to be mapped with Business Model Canvas']='P150002',['Business Model Canvas was applied to ']='P150003',['Authors adapted/extended Osterwalder`s model']='P150004',['Authors used various business models']='P150005',['Authors claim a new model development']='P150006',['Veteran difficulties highlighted']='P150007',['physiological issue analyzed']='P150008',['social issue analyzed']='P150009',['financial issue analyzed']='P150010',['Veterans` support events']='P150011',['author`s suggestion on the matter']='P150012',['author: education']='P150013',['author: year of study']='P150014',['veterans activities']='P150015',['People the study focuses on']='P150016',['impairments focused on']='P150017',['challenges analysed']='P150018',['contributions of the study']='P150019',['focusOnTaxonomyFormat']='P150020',['ICT components']='P150021',['tailored new digital learning materials']='P150022',['methods to overcome the difficulties']='P150023',['OER type']='P150024',['length of time series']='P150025',['number of evaluated distributions']='P150026',['number of goodness of fit metrics']='P150027',['enhancement']='P150028',['Arts activities']='P150029',['methodology used']='P150030',['dataset language']='P150031',['TALLIP']='P150032',['Reported by']='P150033',['hub height']='P150034',['rated power']='P150035',['cut-in wind speed ']='P150036',['rated wind speed ']='P150037',['cut-off wind speed ']='P150038',['Hypothesis evaluation ']='P151000',['Microbiology field']='P151001',['SLD: Population']='P151002',['SLD: Distinction between sex and gender']='P151003',['SLD: Menstrual phase coding']='P151004',['SLD: Season of data collection']='P151005',['SLD: Geographical location']='P151006',['PLD: General study design']='P151007',['PLD: Timeline of experiment (total)']='P151008',['PLD: Pre-laboratory sleep-wake behaviour']='P151009',['PLD: In-laboratory experimental protocol']='P151010',['PLD: Light exposure characteristics']='P151011',['PLD: Measurement-level characteristics']='P151012',['PLD: Light level characteristics']='P151013',['Outcome measures and methods']='P151014',['relevant health information']='P151015',['hourly matching hydrogen cost with flexible demand or low-cost storage']='P151016',['hourly matching hydrogen cost without flexible demand or low-cost storage']='P151017',['eaten with']={'P151018','P151019'},['non-visual effect investigated']='P151020',['plc1: sample size and age']='P151021',['plc2: ocular health and functioning']='P151022',['plc3: reproductive health']='P151023',['plc4: menstrual phase coding']='P151024',['plc5: distinction between sex and gender']='P151025',['clc1: season of data collection']='P151026',['clc2: geographical location']='P151027',['original study where data was collected']='P151028',['slc1: general study design']='P151029',['slc2: timeline of experiment (total)']='P151030',['slc3: pre-laboratory sleep-wake behaviour']='P151031',['scl4: start point of in-lab protocol']='P151032',['slc5: in-laboratory experimental protocol']='P151033',['slc6: additional visual graphic']='P151034',['lec1: light exposure conditions']='P151035',['lec2: light source type']='P151036',['lec3: light source location']='P151037',['lec4: manufacturer of light source']='P151038',['lec5: light level characteristics']='P151039',['lec6: measurement details for illuminance']='P151040',['lec7: manufacturer of measuring instrument']='P151041',['outcome measures: assessment']='P151042',['outcome measures: derived metrics']='P151043',['data processing notes']='P151044',['lec: viewing distance to stimulus']='P151045',['lec: instructions for gaze during exposure']='P151046',['data processing/analysis notes']='P151047',['Requirements of MAS']='P151048',['Potential threats in MAs']='P151049',['Types of cyber attacks']='P151050',['Fault detection']='P151051',['Fault reaction']='P151052',['Case study/Simulations']='P151053',['Modeled scenarios']='P151054',['lec6: viewing distance to stimulus']='P151055',['lec7: instructions for gaze during exposure']='P151056',['lec8: measurement details for illuminance']='P151057',['lec9: manufacturer of measuring instrument']='P151058',['detection techniques']='P151059',['slc4: start point of in-lab protocol']='P151060',['plc3: pupil size and/or dilation']='P151061',['plc4: reproductive health']='P151062',['plc5: menstrual phase coding']='P151063',['plc6: distinction between sex and gender']='P151064',['research aim']='P151065',['library used']='P151066',['language used']='P151067',['max batch size']='P151068',['min batch size']='P151069',['pre-trained model used']='P151070',['number of fake news']='P151071',['number of real news']='P151072',['OpenAlex ID']={'P151073','P151074'},['Prospective or retrospective analysis']='P151075',['Top Terms']='P151076',['contibution type']='P151077',['is wearable']='P151078',['is haptic']='P151079',['is hardware']='P151080',['is software']='P151081',['has device']='P151082',['device usage']='P151083',['music/sound connection']='P151084',['capacity factor']='P151085',['average power output']='P151086',['annual energy produced']='P151087',['bounding box identification']='P152000',['linearizer used']='P152001',['approaches used']='P152002',['files type output']='P152003',['files type input']='P152004',['number of mathematical expressions']='P152005',['type of fonts']='P152006',['pdf-version']='P152007',['recognition embedded mathematical expressions']='P152008',['conflict']='P152009',['type of participants']='P152010',['existing datasets utilization']='P152011',['newly collected data utilization']='P152012',['health issues']='P152013',['Women participants']='P152014',['Methodology ']='P152015',['Gloss Noise']='P152016',['Evaluation compared with']='P152017',['training optimization']='P152018',['input representation']='P152019',['output layers']='P152020',['total document']='P152021',[' Annotations']='P152022',['drop rate']='P152023',['Hidden State Size']='P152024',['duration of preparation ']='P152025',['Converter used']='P152026',['collection of documents']='P152027',['framework used']='P152028',['Heterogeneous Data Source Issues']='P152029',['Ontology Development Methodology']='P152030',['Unified Ontological Framework']='P152031',['Extended and Reused Ontologies']='P152032',['New Classes and Relationships']='P152033',['Evaluation and Validation']='P152035',['Interdisciplinary Integration']='P152036',['Innovation and Novelty']='P152037',['Impact and Future Directions']='P152038',['retrieval source']='P152039',['retrieval data type']='P152040',['retrieval granularity']='P152041',['augmentation stage']='P152042',['retrieval process']='P152043',['military conflict']='P152044',['photography objects']='P152045',['photography type']='P152046',['year of the photography taken']='P152047',['photographers']='P152048',['is educational institution']='P153000',['is software/hardware design institution']='P153001',['is military/veteran institution']='P153002',['is research/scientific institution']='P153003',['is medical institution']='P153004',['health isues addressed to']='P153005',['VR type']='P153006',['combat experience']='P153007',['has woman participants']='P153008',['type of personnel']='P154000',['has female participants']='P154001',['dietary assessment method']='P154002',['is direct observation']='P154003',['has 24-hour recal']='P154004',['Food Frequency Questionnaires was applied']='P154005',['# dietary outcomes']='P154006',['anthropometric data assessed']='P154007',['alcohol as an energy source considered']='P154008',['diet compared with the military guidelines']='P154009',['Ontology Scalability']='P154012',['Metadata Standard Usage']='P154013',['Interdisciplinary Relevance']='P154014',['Primary Domain Focus']='P154020',['Key Aspects Covered']='P154021',['target audience']='P154022',['Ontology URL']='P154025',['Ontology Design Strategy']='P154026',['Ontology Orientation']='P154027',['Ontology Extension Rationale']='P154028',['Ontology Scalability Classification']='P154030',['Ontology Scalability Evaluation']='P154031',['Ontology Reusability Classification']='P154032',['Ontology Reusability Evaluation']='P154033',['target_species']='P154035',['ecosystem_types']='P154036',['study_sites']='P154037',['degradation_types']='P154038',['management_actions']='P154039',['bytes transferred']='P154040',['Number of HTTP requests']='P154041',['matrix multiplication schemes']='P154042',['quantization']='P154043',['evaluation benchmark']='P154044',['zero-shot evaluation tasks']='P154045',['accuracy-based tasks']='P154046',['generation task']='P154047',['power plant']='P154048',['Knowledge Organization Systems']='P154049',['Main Discipline']='P154050',['# Concepts']='P154051',['Depth']='P154052',['Kind of hierarchy']='P154053',['Related Terms']='P154054',['Generation']='P154055',['Formats']='P154056',['Frequency of update']='P154057',['Last update']='P154058',['Maintainers']='P154059',['Mapping']='P154060',['Sessions']='P154061',['funded']='P154062',['implementation field']='P154063',['facebook connection']='P154064',['VR connection']='P154065',['VR device']='P154066',['senses']='P154067',['activity type']='P154068',['used transformers']='P154070',['transformers type']='P154071',['transformer trained on']='P154072',['paper class']='P154073',['evaluation research']='P154074',['philosophical paper']='P154075',['opinion paper']='P154076',['proposal of solution']='P154077',['personal experience paper']='P154078',['validation research']='P154079',['experiment on']='P154080',['experiment model size']='P154081',['quantization level']='P154082',['has LCOE']='P154083',['Article Title']='P154084',['rotating FOV']='P154085',['buildings function']='P154086',['expending energy']='P154087',['plc01: sample size and age']='P154088',['plc02: ocular health and functioning']='P154089',['plc03: pupil size and/or dilation']='P154090',['plc04: reproductive health']='P154091',['plc05: menstrual phase coding']='P154092',['plc06: distinction between sex and gender']='P154093',['prospective/retrospective analysis']='P154094',['slc01: general study design']='P154095',['slc03: pre-laboratory sleep-wake behaviour']='P154097',['slc04: start point of in-lab protocol']='P154098',['slc05: in-laboratory experimental protocol']='P154099',['slc06: additional visual graphic']='P154100',['clc01: season of data collection']='P154101',['clc02: geographical location']='P154102',['lec01: light exposure conditions']='P154103',['lec02: light source type']='P154104',['lec03: light source location']='P154105',['lec04: manufacturer of light source']='P154106',['lec05: light level characteristics']='P154107',['lec06: viewing distance to stimulus']='P154108',['lec07: instructions for gaze during exposure']='P154109',['lec08: measurement details for illuminance']='P154110',['lec09: manufacturer of measuring instrument']='P154111',['year of price level']='P154112',['has wind power density']='P155000',['Understanding the impact of solar heat from uncovered solar collectors on heat pumps Systems. ']='P155001',['practical results']='P155002',['VR implementation']='P155003',['test property please delete']='P156000',['association created']='P156001',['scientist']='P156002',['female scientists mentioned']='P156003',['activities` finish']='P156004',['safety']='P156005',['stability']='P156006',['reproducibility']='P156007',['precusor consumption']='P156008',['device performance']='P156009',['reactant']='P156010',['temperature range']='P156011',['pressure range']='P156012',['process parameter']='P156013',['thickness control']='P156015',['uniformity']='P156016',['conformality']='P156017',['film property']='P156018',['self limiting behavior']='P156019',['nucleation behavior']='P156020',['growth per cycle']='P156021',['process characteristic']='P156022',['Factuality']='P156023',['Faithfulness']='P156024',['Manual']='P156025',['Attribute']='P156026',['task input']='P156027',['task label']='P156028',['task metric']='P156030',['no of transformer blocks']='P156031',['no of self attention head']='P156032',['VR scenes used/developed']='P156033',['First responders']='P156034',['VR technology']='P156035',['First Responders` training']='P156036',['volnterring activities']='P156037',['volunteering institutions']='P156038',['volunteering activities']='P156039',['outcome measures']='P156040',['Intervention components']='P156041',['Assessment tools']='P156042',['10.1016/j.heliyon.2020.e03432']='P156043',['number of news']='P156044',['machine learning framework used']='P156045',['data pre-processing methods']='P156046',['deep learning model used']='P156047',['embeddings method used']='P156048',['language of dataset']='P156049',[' Testing Data']='P156050',['type of classification data']='P156051',['text data']='P156052',['dataset consist images ']='P156053',['dataset contains images']='P156054',['dataset contains texts']='P156055',['research fields']='P156056',['multimodality']='P156057',['for what model used']='P156058',['Recommendation type']='P156059',['R2D2']='P156060',['leaderboard']='P156061',['ownerName']='P156063',['manufacturerName']='P156065',['identifierType']='P156064',['RelatedIdentifier']='P156066',['manufacturerIdentifier']='P156067',['InstrumentType']='P156068',['algorithm improved']='P156070',['algoritm implementation']='P156071',['what will be improved with the developed method']='P156072',['developed approach']='P156073',['algorithms used to compare with']='P156074',['applied value']='P156075',['research objects']='P156076',['actual problems']='P156077',['problem solving approaches']='P156078',['Input Parameter']='P156079',['Available Nutrients']='P156080',['Suitable crop']='P156081',['Number of Soil Samples']='P156082',['Classification Result']='P156083',['Soil Class']='P156084',['Suitable Crops']='P156085',['analysis result']='P156086',['has sections']='hasSections',['participants condition']='P157000',['model affiliation']='P157001',['attention']='P157002',['layer-number']='P157003',['open training datasets']='P157004',['max context window']='P157005',['wiki']='P157006',['University']='P158000',['degree']='P158001',['Military Service Risk Factors']='P158002',['Post Service Risk Factors']='P158003',['optimization task']='P158004',['Branch and Bound method area of application']='P158005',['military background']='P158006',['Design & data collection']='P158007',['number of network nodes']='P158008',['number of network edges']='P158009',['number of unique tweets']='P158010',['number of coordinated users']='P158011',['machine learning model used']='P158012',['natural language processing models used']='P158042',['How does the share of OA publications differ between countries?']='P159000',['carbon footprint method']='P159001',['location of consumer']='P159002',['location of producer']='P159003',['system level emissions']='P159004',['deliverability']='P159005',['reference scenario']='P159006',['Has energy carrier']='P160000',['has demand']='P160001',['has load profile']='P160002',['variable type']='P160003',['OWL support']='P160004',['Dynamic ontology evolution']='P160005',['Semantic Reasoning']='P160006',['integration with editors']='P160007',['entity generation']='P160008',['Custom Naming Conventions']='P160009',['SPARQL compability']='P160010',['Web interface']='P160011',['Complex Query Handling']='P160012',['Automated Error Detection']='P160013',['product type']={'P160014','P160015'},['Abundance ']='P160016',['Type of polymer']='P160017',['Microplastics in food']='P160018',['Average Particle Abundance']='P160019',['property1']='P160020',['property2']={'P160021','P160022','P160023'},['property3']='P160024',['additionality']='P160025',['documentation support']='P160026',['Additive Manufacturing Process']='P160027',['Coating']='P160028',['Technology Readiness Level']='P160029',['added features']={'P160030','P160031'},['model-name']={'P161000','P161001'},['paradigm']='P161003',['training datasets']='P161004',['Additional Training Techniques']='P161005',['ALD process']='P161006',['ALDMethod']='P161007',['MaterialDeposited']='P161008',['Reactant Selection']='P161009',['Precursor']='P161010',['CoReactant']='P161011',['CarrierGas']='P161012',['ALD System']='P161013',['Film Stability']='P161015',['DeliveryMethod']='P161017',['TicknessControl']='P161018',['ThicknessControl']='P161019',['GrowthPerCycle']='P161020',['Saturation']='P161021',['NucleationPeriod']='P161022',['DosingTime']='P161023',['PurgeTime']='P161024',['RefractiveIndex']='P161025',['AbsorptionCoefficient']='P161026',['Resistivity']='P161027',['CarrierDensity']='P161028',['Variation']='P161029',['AspectRatio']='P161030',['MaterialProperties']='P161031',['ChemicalComposition']='P161032',['FilmDensity']='P161033',['OpticalProperties']='P161034',['ElectricalProperties']='P161035',['Confomality']='P161036',['ALDSystem']={'P161037','P161038'},['ReactantSelection']='P161039',['ProcessParameters']='P161040',['OtherAspects']='P161041',['FilmStability']='P161042',['firm type']='P161043',['https://dlab.ug.edu.ge/']='P161044',['Generic Use Case']='P161045',['Contribution Type']='P161046',['F1: persistent URL']='P161047',['F2: metadata available']='P161048',['A1: meta(data) retrievable using a standardized communication protocol']='P161049',['I1: metadata standards reused']='P161050',['I2: additional standards reused']='P161051',['I2: standards contributed to']='P161052',['R1: open-source license']='P161053',['R2: interactive tutorials']='P161054',['R3: containerized applications']='P161055',['research stage']='P161056',['GeneSymbol']='P161057',['PublicationYear']='P161058',['resourceTypeGeneral']='P161059',['ResourceType']='P161060',['experimental evolution']='P162000',['MIC fold change']='P162001',['antimicrobial peptides']='P162002',['annotator']='P162003',['Data Construction Domain']='P162004',['Tuning Method Evaluation Type']='P162005',['Base LLM']='P162006',['creatorName']='P163000',['nameType']='P163001',['AlternateIdentifier']='P163002',['alternateIdentifierType']='P163003',['obs_used_for_testing']='P163005',['allows_unbiased_estimation']='P163006',['performance_type']='P163007',['Settings']='P163008',['context length (in tokens)']='P163009',['supported language']='P163010',['knowledge cutoff date']='P163011',['fine-tuning data']='P163012',['size of training corpus (in tokens in billions)']='P163013',['relatedIdentifer']='P163014',['identifer']='P163015',['extraction']='P163016',['contribution:research_problem']='P163017',['code_repository']='P163018',['paper:publication_year']='P163019',['Focus Area']='P163020',['data format specification']='P163021',['data item']='P163022',['has parts']='P163023',['alias']='P163024',['relatedItemType']='P164000',['relatedItemIdentifier']='P164001',['identifies data quality issues']='P164002',['dataset contruction']='P164003',['Reason for giving in dictator game']='P165000',['research_field']='P165001',['SimulationParameters']='P166000',['Materials']='P166001',['GrowthRate']='P166002',['SurfaceProperties']='P166003',['FilmProperties']='P166004',['ReactorConditions']='P166005',['SelectiveGrowthMechanism']='P166006',['NucleationProcess']='P166007',['MethodDetails']='P166008',['Timestep']='P166009',['functional']='P166010',['BasisSet']='P166011',['ClusterModel']='P166012',['CoReactants']='P166013',['Substrates']='P166014',['EncapsulationMaterials']='P166015',['LigandModification']='P166016',['OriginalLigand']='P166017',['modifiedLigand']='P166018',['temperatureDependence']='P166019',['propertySource']='P166020',['year range of papers']='P166021',['Laser power [W]']='P166022',['Scan speed [mm/s]']='P166023',['Hatch distance [mm]']='P166024',['Geometry specification']='P166025',['Properties measured']='P166026',['Heat treatment']='P166027',['Volumetric Energy Density [J/mm³]']='P166028',['desorptionRate']='P166029',['diffusionRate']='P166030',['reactionRate']='P166031',['stickingCoefficient']='P166032',['bindingAffinity']='P166033',['surfaceCoverage']='P166034',['timeDependent']='P166035',['chemisorptionCharacteristics']='P166036',['chemisorbedPrecursorDensity']='P166037',['stericHindrance']='P166038',['surfaceHydroxylConcentration']='P166039',['reactionPathways']='P166040',['intermediateComplex']='P166041',['activationEnergy']='P166042',['adsorptionEnergy']='P166043',['surfaceTerminationChemistry']='P166044',['roughness']='P166045',['temperatureProfile']='P166046',['carrierGasFlow']='P166047',['carrierGasType']='P166048',['precursorFlow']='P166049',['gapDistance']='P166050',['flowRate']='P166051',['pulseDuration']='P166052',['purgeDuration']='P166053',['nucleationDelay']='P166054',['selfCleaningEffect']='P166055',['facetPreference']='P166056',['substituentEffects']='P166057',['blockingMechanisms']='P166058',['stericBlocking']='P166059',['chemicalPassivation']='P166060',['implant model']='P166061',['cell culture']='P166062',['bacterial culture']='P166063',['3D scaffold']='P166064',['cell type']='P166065',['culture medium ingredient']='P166066',['co-culture']='P166067',['bacterial organization']='P166068',['culture time']='P166069',['co-culture medium']='P166070',['process plan']='P166071',['PurgingGas']={'P166072','P166073','P166075','P166074'},['Precursor Bubbler Temperature']='P166076',['CoReactant Bubbler Temperature']='P166077',['Precursors Dosing Time']='P166078',['CoReactant Purging Time']='P166079',['Precursors Purging Time']='P166080',['CoReactant Dosing Time']='P166081',['Chamber Pressure']='P166082',['Plasma Power']='P166083',['Radio Frequency']='P166084',['Cycle Ratio']='P166085',['Number of Supercycles']='P166086',['Growth per Supercycle']='P166087',['Nucleation Period']='P166088',['GPC Indium']='P166089',['GPC Gallium']='P166090',['GPC Zinc']='P166091',['Electrical Mobility']='P166092',['staining']='P166093',['bacterial species']='P166094',['barrier']='P167000',['barriers']='P167001',['Categories']='P169000',['Underlying Technique']='P169001',['Primary Advantages']='P169002',['Resource Requirements']='P169003',['Architectural Similarity Required']='P169004',['Number of Models']='P169005',['Knowledge Integration']='P169006',['active learning']='P169007',['Zinc Precursor']='P169008',['Indium Precursor']='P169009',['Gallium Precursor']='P169010',['DepositionTemperature']='P169011',['ChamberPressure']='P169012',['BubblerTemperatures']='P169013',['IndiumPrecursor']='P169015',['GalliumPrecursor']='P169016',['ZincPrecursor']='P169017',['IndiumOxide']='P169018',['GalliumOxide']='P169019',['ZincOxide']='P169020',['IndiumGalliumZincOxide']='P169021',['CycleRatio']='P169022',['Indium']='P169023',['Gallium']='P169024',['Oxygen']={'P169025','P169026'},['User Devices']='P170000',['Unstructured data']='P170001',['Structured data']='P170002',['Data Extraction Methods']='P170003',['research approach']='P170004',['PROM']='P170005',['Digital Health Platform']='P170006',['Integration Standard']='P170007',['Sustainable Development Goals']='P170008',['indexed keywords']='P170009',['education type']='P170010',['AI types']='P170011',['AI application']='P170012',['modelsize']='P171000',['datatokens']='P171001',['primary LLMs']='P171002',['has_application']='P171003',['number of true article']='P171004',['number of fake article']='P171005',['isolation technique']='P171006',['scRNA-seq technique']='P171007',['Reported Cells Total']='P171008',['Log10(Number of cells)']='P171009',['DateReported']='P171010',['date reported']='P171011',['preprint']='P172000',['preprint doi']='P172001',['Policy Review for land restriction']='P172002',['Implicit methods for land exclusion']='P172003',['Finidngs']='P172004',['Year of publication']='P172005',['AI techniques']='P172006',['FUTURE RESEARCH DIRECTIONS']='P172007',['bits for weights']='P172008',['bits for activations']='P172009',['bits for KV cache']='P172010',['perplexity difference on Wikitext-2']='P172011',['perplexity difference on C4 dataset']='P172012',['study novelty']='P172013',['veterans issues ']='P172014',['study limitations']='P172015',['primary Tasks']='P172016',['external tools']='P172017',['Fine Tuning']='P172018',['Self RefineType']='P172019',['code_repo_url']='P172020',['dataset preprocessing']='P172021',['preprocessing tool']='P172022',['AI technology']='P172023',['ethical implication']='P172024',['Questions']='P172025',['question 1']='P172026',['question 2']='P172027',['question 3']='P172028',['challenge surveyed']='P172029',['used LLM']='P172030',['utilized datasets']='P172031',['NGS platform']='P172032',['advantage of using AI']='P172033',['disadvantage of using AI']='P172034',['applicableUnit']='P172035',['isCitedBy']='P173000',['type of model']='P173001',['aleProcess']='P173002',['directionality']='P173003',['reactantA']='P173004',['reactantB']='P173005',['ProcessDetails']='P173006',['substrateTemperature']='P173007',['PulseTimes']='P173008',['pulseA']='P173009',['pulseB']='P173010',['PurgeTimes']='P173011',['purgeA']='P173012',['purgeB']='P173013',['reactorType']='P173014',['RFpower']='P173015',['reactantFlow']='P173016',['numberOfCycles']='P173017',['EtchControl']='P173018',['etchPerCycle']='P173019',['massLoss']='P173020',['Synergy']='P173021',['synergyValue']='P173022',['ALEWindow']='P173023',['TemperatureWindow']='P173024',['minTemperature']='P173025',['maxTemperature']='P173026',['IonEnergyWindow']='P173027',['minIonEnergy']='P173028',['maxIonEnergy']='P173029',['EtchedMaterialProperties']='P173030',['nonUniformity']='P173031',['Selectivity']='P173032',['selectivityDescription']='P173033',['sustainability']='P173034',['environmentalImpact']='P173035',['paper: title']='P173036',['Research-Based Criteria']='P173037',['Regulatory land-use exclusion']='P173038',['Light exposure variable(s)']='P173039',['Visual environment characteristic(s)']='P173040',['Measurement tools']='P173041',['Myopia definition']='P173042',['Myopia outcome(s)']='P173043',['Viewing distance to near object']='P173044',['Statistical analysis method']='P173045',['Study objective']='P173046',['Light exposure varibales']='P173047',['successor']='P174000',['warnings rate']='P174001',['interruptions rate']='P174002',['firm aggregation level']='P174003',['programming_languages used']='P174004',['S/N']='P174005',['contribution:research_focus']='P174006',['contribution_data_type']='P174007',['contribution_experimental_dataset']='P174008',['paper:proposed_method']='P174009',['contribution_answer_selection_technique']='P174010',['paper_evaluation_method']='P174011',['paper:results_relative_to_baseline']='P174012',['Proposed Method']='P174014',['Answer selection']='P174015',['Studied models']='P174016',['Answer selection technique']='P174017',['study_mode']='P174018',['equation type']='P174019',['order of equation']='P174020',['growth dynamics']='P174021',['linearity']='P174022',['analytical solvability']='P174023',['Result SciCite']='P174024',['Result ACL-ARC']='P174025',['Result SciCite (macro-F1 Score)']='P174026',['Result ACL-ARC (macro-F1 Score)']='P174027',['publication_date']='P174028',['publication_venue']='P174029',['research_aims']='P174030',['theoretical_frameworks']='P174031',['participant_count']='P174032',['ethical_approval']='P174033',['consent_method']='P174034',['primary_findings']='P174035',['theoretical_contributions']='P174036',['researcher_roles']='P174037',['data_types']='P174039',['data_formats']='P174040',['research_project']='P174041',['deliverable']='P174042',['deliverable_name']='P174043',['deliverable_type']='P174044',['context_data']='P174045',['peer_review_status']='P174046',['discipline_areas']='P174047',['location_type']='P174048',['deployment_context']='P174049',['interaction_types']='P174050',['interactive_possibilities']='P174051',['display_affordances']='P174052',['user_groups']='P174053',['user_motivations']='P174054',['information_type']='P174055',['content_types']='P174056',['deployment_area']='P174057',['social_environment']='P174058',['methodological_rationale']='P174059',['design_innovations']='P174060',['prototyping_method']='P174061',['feedback_mechanism']='P174062',['user_experience']='P174063',['content_accessibility']='P174064',['cultural_considerations']='P174065',['ethical_consideration']='P174066',['privacy_issue']='P174067',['content_relevance']='P174068',['privacy_dimension']='P174069',['theoretical_justification']='P174070',['display_effectiveness']='P174071',['effectiveness_metrics']='P174072',['effectiveness_factor']='P174073',['practical_implications']='P174074',['institutional_affiliation']='P174075',['sampling_strategy']='P174076',['observation_technique']='P174077',['method_triangulation']='P174078',['interdisciplinary_methods']='P174079',['content_update_frequency']='P174080',['practical_significance']='P174081',['innovation_degree']='P174082',['study_duration']='P174083',['design_adaptations']='P174084',['sampling_method']='P174085',['inclusion_criteria']='P174086',['validity_measure']='P174087',['reliability_measure']='P174088',['research_question']='P174089',['prototyping_approach']='P174090',['deployment_status']='P174091',['deployment_phase']='P174092',['display_count']='P174093',['cross-cultural_factor']='P174094',['privacy_communication_strategies']='P174095',['attention_phases']='P174096',['social_impact']='P174097',['impact_type']='P174098',['impact_description']='P174099',['design_objective']='P174100',['contextual_effectiveness_variation']='P174101',['site-specific_adaptations']='P174102',['practical_application_potential']='P174103',['research_trend_alignment']='P174104',['community_empowerment_aspects']='P174105',['urban_planning_applications']='P174106',['community_response']='P174107',['digital_divide_implications']='P174108',['interaction_narrative']='P174109',['user_journey']='P174110',['interaction_mode']='P174111',['social_influence']='P174112',['interaction_encouragement_factors']='P174113',['observation_period']='P174114',['iterative_process']='P174115',['user_aims']='P174116',['design_success_factors']='P174117',['user_trust_factors']='P174118',['deployment_challenges']='P174119',['cultural_dimension']='P174120',['comparative_findings']='P174121',['methodological_innovations']='P174122',['result_interpretation']='P174123',['influence_type']='P174124',['influence_strength']='P174125',['pattern_description']='P174126',['theoretical_implications']='P174127',['longitudinal_aspect']='P174128',['phase_names']='P174129',['content_narrative_structure']='P174130',['information_architecture']='P174131',['different_ability_considerations']='P174132',['cultural_sensitivity']='P174133',['effectiveness_trajectory']='P174134',['design_evolution']='P174135',['methodological_challenges']='P174136',['user_expectations']='P174137',['environmental_context']='P174138',['research_setting']='P174139',['method_sequencing']='P174140',['stakeholder_involvement']='P174141',['participatory_ethics']='P174142',['public_service_integration']='P174143',['interaction_learning_curve']='P174144',['cross-device_interaction']='P174145',['collaboration_with']='P174146',['local_demographic']='P174147',['user_agency_perception']='P174148',['time_point_count']='P174149',['evidence_type']='P174150',['community_ethical_feedback']='P174151',['NTL Imagery']='P174152',['Outage Timeseries Record']='P174154',['Outage Severity Map']='P174155',['A Study for Personal Use of the Interactive Large Public Display']='P174156',['Satellite Metadata']='P174157',['island']='P174158',['derived data']='P174159',['theoretical contributions']='P174160',['publication_impact']='P174161',['lab_study_1']='P174162',['field_study']='P174163',['add-on_study']='P174164',['follows_research_tradition']='P174165',['study_type']='P174166',['design_limitations']='P174167',['unexpected_challenges']='P174168',['displays']='P174169',['affordance_type']='P174170',['affordance_description']='P174171',['display_priming']='P174172',['software_architecture']='P174173',['visual_theme']='P174174',['content_effectiveness_metrics']='P174175',['sensor_type']='P174176',['data_size']='P174177',['data_processing_pipeline']='P174178',['movement_pattern']='P174179',['engagement_pattern']='P174180',['biometric_data_handling']='P174181',['contactless_interaction']='P174182',['movement_types']='P174183',['attentional_demand']='P174184',['fidelity_level']='P174185',['P174028']='P174186',['display_type']='P174187',['resolution']='P174188',['touch_capability']='P174189',['hardware_specifications']='P174190',['crowd_density']='P174191',['gesture_types']='P174192',['input_devices']='P174193',['input_modalities']='P174194',['temporal_aspects']='P174195',['gesture_recognition']='P174196',['abstraction_mechanism']='P174197',['conducts']='P174198',['general_terms']='P174199',['additional_key_words']='P174200',['project']='P174201',['project_name']='P174202',['start_date']='P174203',['research_goal']='P174204',['methodological_adaptations']='P174205',['methodological_reflections']='P174206',['collects_data']='P174207',['interaction_count']='P174208',['user_counting_metric']='P174209',['lab-real_world_difference']='P174210',['generalizability_assessment']='P174211',['result_limitations']='P174212',['contextual_factors']='P174213',['result_narrative']='P174214',['finding_significance']='P174215',['sustainability_features']='P174216',['accessibility_features']='P174217',['trigger_condition']='P174218',['adaptation_response']='P174219',['senses_through']='P174220',['implemented_by']='P174221',['api_support']='P174222',['technical_requirement']='P174223',['uses_algorithm']='P174224',['user_data_handling']='P174225',['personalization_capabilities']='P174226',['software_adaptability']='P174227',['automated_content_generation']='P174228',['code_availability']='P174229',['software_reliability_measures']='P174230',['content_source']='P174231',['content_modality']='P174232',['interactivity']='P174233',['media_format']='P174234',['content_personalization']='P174235',['user-generated_content_integration']='P174236',['interaction_barriers']='P174237',['device_type']='P174238',['influences_phase']='P174239',['user_mental_model']='P174240',['pattern_name']='P174241',['impact_timescale']='P174242',['affects_community']='P174243',['unintended_social_consequences']='P174244',['privacy_by_design_elements']='P174245',['ethical_dimension']='P174246',['ethics_committee_approval']='P174247',['power_dynamics_consideration']='P174248',['deployed_at_location']='P174249',['smart_city_integration']='P174250',['citizen_participation_features']='P174251',['connected_infrastructure']='P174253',['effectiveness_factors']='P174254',['system_load']='P174255',['iteration_count']='P174256',['involves_users']='P174257',['cultural_context']='P174258',['localization_needs']='P174259',['remote_management_capabilities']='P174260',['research opportunity']='P174261',['interaction counting']='P174262',['collaborates with']='P174263',['user frustrations']='P174264',['user accommodations']='P174265',['user learning process']='P174266',['user emotional response']='P174267',['phase order']='P174268',['observable behaviors']='P174269',['affects interaction']='P174270',['applies to']='P174271',['honeypot effect']='P174272',['leads to behavior']='P174274',['anonymous interaction options']='P174275',['display modularity']='P174276',['spatial layout']='P174277',['coordination mechanism']='P174278',['distance category']='P174279',['environmental adaptation']='P174280',['adaptation type']='P174281',['interaction accessibility']='P174282',['ai-mediated interaction']='P174283',['input modality']='P174284',['enables interaction']='P174286',['application element']='P174287',['ai components']='P174288',['machine learning models']='P174289',['data capture type']='P174290',['skeleton data capabilities']='P174291',['interaction data']='P174292',['observation data']='P174293',['measured for']='P174294',['measured during']='P174295',['influenced by']='P174296',['group analytics']='P174297',['tests affordances']='P174298',['leads to development']='P174299',['assessed by']='P174300',['affiliated with']='P174303',['part of display arrangement']='P174304',['data collection methods']='P174305',['hygiene considerations']='P174306',['display size']='P174307',['spatial_layout']='P174309',['positioning']='P174310',['deployment_period']='P174311',['motion_path']='P174312',['body_part']='P174313',['priming_technique']='P174314',['interaction_outcome']='P174315',['application_type']='P174316',['sensor_logs']='P174317',['interaction_data']='P174318',['observation_data']='P174319',['data_collection_methods']='P174320',['observation_duration']='P174321',['interaction_counting']='P174322',['ecological_validity_measure']='P174323',['user_learning_process']='P174324',['average_engagement_time']='P174325',['refresh_rate']='P174326',['input_modality']='P174327',['data_capture_type']='P174328',['method_limitations']='P174329',['comparative_analysis']='P174330',['ethical_guideline']='P174331',['user_satisfaction_measures']='P174332',['installation_date']='P174333',['visual_quality_assessment']='P174334',['viewing_distance']='P174335',['distance_category']='P174336',['environmental_adaptation']='P174337',['adaptation_type']='P174338',['user_response']='P174339',['perception_rate']='P174340',['recognized_by']='P174341',['enables_interaction']='P174342',['priming_duration']='P174343',['uses_content']='P174344',['effectiveness_rating']='P174345',['facilitates_transition']='P174346',['application_element']='P174347',['priority']='P174348',['research_opportunity']='P174349',['post-study_insights']='P174350',['protocol_step']='P174351',['unexpected_methodological_insights']='P174352',['validity_dimension']='P174353',['unexpected_findings']='P174354',['alternative_explanations']='P174355',['transformative_findings']='P174356',['user_group']='P174357',['user_motivation']='P174358',['user_aim']='P174359',['user_frustrations']='P174360',['user_accommodations']='P174361',['user_creativity']='P174362',['user_emotional_response']='P174363',['frequency_of_occurrence']='P174364',['characteristic_of']='P174365',['contains_phases']='P174366',['phase_order']='P174367',['observable_behaviors']='P174368',['typical_duration']='P174369',['transition_probability']='P174370',['affects_interaction']='P174371',['honeypot_effect']='P174373',['activation_threshold']='P174374',['effect_magnitude']='P174375',['propagation_pattern']='P174376',['measured_in']='P174380',['related_to']='P174381',['ethical_implication']='P174382',['impacts_group']='P174383',['ethical_reasoning']='P174384',['ethical_tensions']='P174385',['ethical_reflection']='P174386',['influences_design']='P174387',['studied_in']='P174388',['smart_cities_integration']='P174389',['measured_for']='P174390',['measured_during']='P174391',['influenced_by']='P174392',['qualitative_effectiveness_assessment']='P174393',['effectiveness_measurement_challenges']='P174394',['effectiveness_comparison']='P174395',['tests_affordances']='P174397',['leads_to_development']='P174398',['assessed_by']='P174399',['project_manager']='P174400',['expertise']='P174401',['affiliated_with']='P174402',['part_of_display_arrangement']='P174403',['field_of_view']='P174404',['influenced_by_content']='P174405',['sound_level_adjustment']='P174406',['sound_activation_based_on_proximity']='P174407',['sound_duration_control']='P174408',['response_time']='P174409',['latency']='P174410',['sampling_rate']='P174411',['calibration_date']='P174412',['skeleton_data_capabilities']='P174413',['requires_calibration']='P174414',['calibration_type']='P174415',['calibration_parameters']='P174416',['calibration_frequency']='P174417',['uses_tool']='P174418',['sensor_3d_images']='P174420',['confidence_level']='P174421',['depends_on']='P174422',['protocol_author']='P174423',['approval_date']='P174424',['observer_effect']='P174425',['preliminary_questionnaire']='P174426',['main_experiment']='P174427',['status_count']='P174428',['face_validity']='P174429',['construct_validity']='P174430',['internal_validity']='P174431',['change_metric']='P174432',['tracked_patterns']='P174433',['collaborates_with']='P174434',['phase_name']='P174435',['interaction_type']='P174436',['user_awareness']='P174437',['mitigation_strategy']='P174438',['opt-out_mechanisms']='P174439',['ethical_documentation']='P174440',['uses_research_method']='P174441',['power_consumption']='P174442',['null_findings']='P174443',['attention_phase']='P174444',['environmental_impact_assessment']='P174445',['energy_efficiency_measures']='P174446',['carbon_footprint']='P174447',['lifecycle_assessment']='P174448',['effectiveness_metric']='P174449',['attention_rate']='P174450',['conversion_rate']='P174451',['evaluation_metric']='P174452',['researcher']='P174453',['researcher_name']='P174454',['public_display_properties']='P174456',['cylindrical_display']='P174457',['flat_display']='P174458',['cylindrical_display_screen']='P174459',['cylindrical_display_projectors']='P174460',['cylindrical_display_prototype']='P174461',['flat_display_setup']='P174462',['ai_components']='P174463',['interactivity_and_user_experience']='P174464',['software_and_content']='P174465',['sensors_and_data_collection']='P174466',['research_study_elements']='P174467',['h1']='P174468',['h2']='P174469',['h3']='P174470',['variance_of_location_was_significantly_higher_for_the_column_(rows']='P174471',['users_spent_significantly_less_time_overall_interacting_with_the_cylindrical_display_(1']='P174472',['user_and_social_dynamics']='P174473',['evaluation_metrics']='P174474',['research_organization_elements']='P174475',['publication_accessibility']='P174476',['data_retention_policy']='P174477',['pandemic_adaptation']='P174478',['hygiene_considerations']='P174479',['deployment_log']='P174480',['has_interaction_mode']='P174481',['peripheral_display']='P174482',['peripheral_purpose']='P174483',['county']='P174484',['contextual_privacy_adaptation']='P174485',['group_analytics']='P174486',['interaction_abandonment_reasons']='P174487',['addressed_in']='P174488',['participating_scientist']='P174489',['hasResourceLocation']='P174490',['P49051']='P174491',['proxemic_dimensions']='P174492',['proxemic_interaction']='P174493',['spatial_interaction']='P174494',['interaction_zones']='P174495',['proximity_detection']='P174496',['interaction_hotspots']='P174497',['noticeability']='P174498',['evaluation_framework']='P174499',['evaluation_dimensions']='P174500',['evaluation_challenges']='P174501',['lab_studies']='P174502',['deployment-based_research']='P174504',['audience_behavior']='P174505',['interaction_patterns']='P174506',['attention_measurement']='P174507',['engagement_metrics']='P174508',['evaluation_ethics']='P174509',['observation_techniques']='P174510',['data_collection_approaches']='P174511',['mixed_methods']='P174512',['controlled_studies']='P174513',['in-the-wild_studies']='P174514',['long-term_evaluation']='P174515',['behavioral_metrics']='P174516',['perceptual_metrics']='P174517',['affective_metrics']='P174518',['cognitive_metrics']='P174519',['social_metrics']='P174520',['privacy_considerations']='P174521',['formative_evaluation']='P174522',['summative_evaluation']='P174523',['longitudinal_studies']='P174524',['multi-method_approaches']='P174525',['research_validity']='P174526',['novelty_effect']='P174527',['habituation_effects']='P174528',['data_analysis_approaches']='P174529',['temporal_factors']='P174530',['demographic_factors']='P174531',['user_acceptance']='P174532',['display_blindness']='P174533',['evaluation_planning']='P174534',['evaluation_execution']='P174535',['transferability']='P174536',['replicability']='P174537',['multi-stakeholder_evaluation']='P174538',['ethnographic_approaches']='P174539',['automated_data_collection']='P174540',['manual_observation']='P174541',['reliability_measures']='P174542',['validity_measures']='P174543',['technology_probe_approach']='P174544',['usability_evaluation']='P174545',['user-centered_evaluation']='P174546',['context-centered_evaluation']='P174547',['hybrid_evaluation_approaches']='P174548',['evaluation_phases']='P174549',['iterative_evaluation']='P174550',['evaluation_criteria_selection']='P174551',['benchmarking']='P174552',['baseline_measurement']='P174553',['evaluation_frameworks']='P174554',['evaluation_taxonomies']='P174555',['practical_challenges']='P174556',['ethical_challenges']='P174557',['theoretical_challenges']='P174558',['evaluation_scope']='P174559',['evaluation_depth']='P174560',['evaluation_resources']='P174561',['evaluation_timeline']='P174562',['evaluation_reporting']='P174563',['heuristic_evaluation']='P174564',['analytical_evaluation']='P174565',['empirical_evaluation']='P174566',['impact_evaluation']='P174567',['success_metrics']='P174568',['failure_analysis']='P174569',['evaluation_biases']='P174570',['evaluation_limitations']='P174571',['contextual_evaluation']='P174572',['evaluation_best_practices']='P174573',['in-situ_evaluation']='P174574',['content_expectations']='P174575',['perceived_utility']='P174576',['display_location']='P174577',['peripheral_awareness']='P174578',['animated_content']='P174579',['attention_patterns']='P174580',['content_type_influence']='P174581',['information_density']='P174582',['visual_competition']='P174583',['surprise_factor']='P174584',['display_trustworthiness']='P174585',['commercial_content']='P174586',['public_information']='P174587',['entertainment_content']='P174588',['display_positioning']='P174589',['passerby_behavior']='P174590',['active_ignoring']='P174591',['passive_ignoring']='P174592',['attention_competition']='P174593',['display_noticeability']='P174594',['gaze_duration']='P174595',['fixation_patterns']='P174596',['display_blindness_rate']='P174597',['location_appropriateness']='P174598',['animation_effects']='P174599',['information_value']='P174600',['attention_threshold']='P174601',['attention_economy']='P174602',['banner_blindness_comparison']='P174603',['display_saturation']='P174604',['cognitive_filtering']='P174605',['attention_triggers']='P174606',['brightness_factors']='P174607',['content_change_rate']='P174608',['dwell_time']='P174609',['content_fatigue']='P174610',['curiosity_factor']='P174611',['urgency_perception']='P174612',['information_needs']='P174613',['urban_context']='P174614',['environmental_distractions']='P174615',['visibility_constraints']='P174616',['attentional_set']='P174617',['inattentional_blindness']='P174618',['change_blindness']='P174619',['attentional_capture']='P174620',['motion_sensitivity']='P174621',['selective_attention']='P174622',['display_ecology']='P174623',['contextual_congruence']='P174624',['unexpected_content']='P174625',['bottom-up_attention']='P174626',['top-down_attention']='P174627',['attention_restoration']='P174628',['display_density']='P174629',['visual_field_position']='P174630',['cultural_factors']='P174631',['prior_experience']='P174632',['generational_differences']='P174633',['technology_familiarity']='P174634',['habituation_patterns']='P174635',['environmental_awareness']='P174636',['information_overload']='P174637',['cognitive_load']='P174638',['passive_learning']='P174639',['incidental_attention']='P174640',['display_legitimacy']='P174641',['public_acceptance']='P174642',['sustained_attention']='P174643',['display_prominence']='P174644',['visual_hierarchy']='P174645',['focal_point']='P174646',['line_of_sight']='P174647',['angular_size']='P174648',['message_simplicity']='P174649',['rapid_comprehension']='P174650',['message_memorability']='P174651',['information_relevance']='P174652',['information_timeliness']='P174653',['information_specificity']='P174654',['local_relevance']='P174655',['display_maintenance']='P174656',['content_quality']='P174657',['display_reliability']='P174658',['perceptual_load']='P174659',['signal-to-noise_ratio']='P174660',['ambient_awareness']='P174661',['change_sensitivity']='P174662',['commercial_saturation']='P174663',['advertising_skepticism']='P174664',['information_seeking']='P174665',['information_avoidance']='P174666',['urban_visual_pollution']='P174667',['display arrangement']='P174668',['timestamp']='P174669',['displayed on']='P174670',['size in inches']='P174672',['Duration in seconds']='P174673',['Tasks examined and evaluation criteria']='P174674',['complexity value 1']='P174675',['complexity value 2']='P174676',['complexity value 3']='P174677',['complexity value 4']='P174678',['complexity value 5']='P174679',['Social Group']='P174680',['Study Context']='P174681',['is used by']='P174682',['Technical Requirements']='P174683',['is run by']='P174684',['Actuality']='P174685',['connects to']='P174686',['has location description']='P174687',['is positioned at']='P174688',['has sensor recording']='P174689',['researching']='P174690',['has accessability type']='P174691',['log data']='P174692',['provides information']='P174693',['is communicated through']='P174694',['name of algorithm/methodology']='P174695',['related researcher']='P174697',['has author']='P174698',['has relevant sources']='P174699',['has public display user']='P174700',['basic query']='P174701',['intermediate query']='P174702',['Advanced query']='P174703',['number of queries']='P174704',['organizational_level']='P174712',['organizational_dimension']='P174713',['What ethical issues and risks are associated with the use of artificial intelligence in public and academic libraries?']='P175000',['hydroxyl trend']='P175001',['interannual variability']='P175002',['Original Dataset']='P175003',['Annotator Type']='P175004',['Re-annotation Method']='P175005',['usia']='P175006',['teman']='P175007',['suka']='P175008',['Contribution Year']='P175009',['Goal / Outcome']='P175010',['Author Affiliation']='P175011',['DL Model Used']='P175012',['Preprocessing Techniques']='P175013',['Train/Test Split']='P175014',['Framework or Platform Used']='P175015',['Algorithm or Method']='P175016',['Future Directions']='P175017',['Supported By']='P175018',['# of References']='P175019',['AI Model']='P175020',['Expert Involvement']='P175021',['Used Standalone?']='P175022',['annotation_type']='P175023',['QA_type']='P175024',['aggregation_model']='P175025',['key_insight']='P175026',['proposed_method']='P175028',['proposed_dataset']='P175029',['Curation_strategy']='P175030',['Proposed_usage']='P175031',['domain_specific']='P175032',['data_composition']='P175033',['benchmark_model']='P175034',['# of languages']='P175035',['language families']='P175036',['# of Scripts']='P175037',['validation_type']='P175038',['data_type']='P175039',['dataset_repository']='P175040',['focus_language']='P175041',['covered scripts']='P175042',['metric results']='P175043',['device']='P175044',['dimension / has measurement value']='P175045',['dimension / has unit']='P175046',['weight/without band / has measurement value']='P175047',['weight/without band / has unit']='P175048',['memory usage / has measurement value']='P175049',['memory usage / has unit']='P175050',['battery type']='P175051',['battery life / has measurement value']='P175052',['battery life / has unit']='P175053',['accelerometer']='P175054',['ambient light']='P175055',['ambient temperature']='P175056',['event marker']='P175057',['infrared light']='P175058',['melanopic/photopic light']='P175059',['red/green/blue light']='P175060',['wrist temperature']='P175061',['scene type']='P175062',['events']='P175063',['what are the state of the art techniques for predictive maintenance using sensor data']='P175064',['study_objectives']='P175065',['study_area']='P175066',['age_groups']='P175067',['exclusion_criteria']='P175068',['weather conditions/has value']='P175069',['weather conditions/measurement']='P175070',['light exposure/has value']='P175071',['light exposure/measurement']='P175072',['spectral composition/type']='P175073',['spectral composition/measurement']='P175074',['anterior chamber depth/has value']='P175075',['anterior chamber depth/measurement']='P175076',['axial length/has value']='P175077',['axial length/measurement']='P175078',['corneal power/thickness / has value']='P175079',['corneal power/thickness / measurement']='P175080',['lens thickness/has value']='P175081',['lens thickness/measurement']='P175082',['ser/has value']='P175083',['ser/measurement']='P175084',['myopia_progression']='P175085',['key_findings']='P175086',['research_method']={'P175087','P175088','P175089'},['sex/female']='P175090',['sex/male']='P175091',['sample_size']='P175092',['study_location']='P175093',['measured_by']='P175095',['justification']='P175096',['phishing related?']='P175099',['vishing related?']='P175100',['use of call properties']='P175101',['use of psychological principles']='P175102',['what do we know about the role(s) of indigenous people in legal trials about marriage?']='P175103',['modelling interactions']='P175104',['phishing attack type']='P175105',['paper template']='P175106',['finetuning']='P175107',['ontology retrieval']='P175108',['Cycloplegia']='P175109',['Sleep evaluation tool']='P175110',['Ethnicity']='P175111',['processType']='P175112',['chemicalPrecursors']='P175113',['energySource']='P175114',['substrateMaterial']='P175115',['surfaceModel']='P176000',['surfaceArea']='P176001',['surfaceOrientation']='P176002',['surfaceFacet']='P176003',['termination']='P176004',['latticeParameters']='P176005',['lengths']='P176006',['b']='P176007',['angles']='P176008',['alpha']='P176009',['beta']='P176010',['gamma']='P176011',['spaceGroup']='P176012',['atomicCoordinates']='P176013',['x']='P176014',['y']='P176015',['z']='P176016',['gasFlowRates']='P176017',['precursorGasFlowRate']='P176018',['carrierGasFlowRate']='P176019',['exposureTime']='P176020',['simulationResults']='P176021',['etchedMaterial']='P176022',['byProducts']='P176023',['surfaceModifications']='P176024',['decompositionMechanisms']='P176025',['excitationDynamics']='P176026',['etchRate']='P176027',['surfaceDesorptionRates']='P176028',['designVariables']='P176029',['purgeFlowRate']='P176030',['vacuumPressure']='P176031',['fluorinationDetails']='P176032',['fluorinationAgent']='P176033',['fluorinationCoverage']='P176034',['selfLimitingTemperature']='P176035',['selfLimitingReaction']='P176036',['reactionType']='P176037',['reactionFreeEnergy']='P176038',['minimumThermodynamicBarrier']='P176039',['inertGasIrradiation']='P176040',['ionType']='P176041',['ionEnergy']='P176042',['ionDose']='P176043',['oxidationStep']='P176044',['oxidantType']='P176045',['oxidantEnergy']='P176046',['oxidantDose']='P176047',['simulationMethodology']='P176048',['convergenceCriteria']='P176049',['model purpose']='P176050',['has algorithm']='P176051',['Shape Sensing Method']='P177000',['Investigated Component']='P177001',['age_group (years)']='P177002',['cycloplegics']='P177003',['follow up (years)']='P177004',['near activity']='P177005',['near activity instrument']='P177006',['Biogeographic region']='P177007',['Study ID']='P177008',['Taxa']='P177009',['mean value pastures']='P177010',['mean value silvopastures']='P177011',['mean value natural area']='P177012',['Standard deviation pastures']='P177013',['Standard deviation silvopastures']='P177014',['Standard deviation natural area']='P177015',['Replicates pastures']='P177016',['Replicates silvopastures']='P177017',['Replicates natural area']='P177018',['Vegetation type']='P177019',['Unique ID']='P177020',['sampleID']='P177021',['values']='P177022',['filmThickness']='P177023',['flowRates']='P177024',['coReactantFlow']='P177025',['purgingGasFlow']='P177026',['supercycleDesign']='P177027',['numberofSubcycles']='P177028',['subcycleSequence']='P177029',['bandGap']='P177030',['characterizationMethod']='P177031',['filmComposition']='P177032',['elementalConcentration']='P177033',['atomicRatio']='P177034',['deviceProperties']='P177035',['fieldEffectMobility']='P177036',['thresholdVoltage']='P177037',['subthresholdSwing']='P177038',['onOffRatio']='P177039',['deviceStructure']='P177040',['number of families']='P177041',['name of families']='P177042',['theories']='P177043',['cancer type']='P177044',['epidemiology']='P177045',['pathophysiology']='P177046',['cancer stages']='P177047',['treatment strategies']='P177048',['natural products']='P177049',['cycloplegic refraction']='P177050',['light / duration']='P177051',['light / intensity']='P177052',['light / pattern']='P177053',['light / timing']='P177054',['light / spectrum/wavelength']='P177055',['has Randomization Unit']='P177056',['represents']='P177057',['improves Generalizability']='P177058',['prevents Contamination']='P177059',['has Limitation']='P177060',['received']='P177061',['has delivery mode ']='P177062',['has content focus']='P177063',['has Interval']='P177064',['completed via']='P177065',['has number of participants']='P177066',['lead to']='P177067',['improved']='P177068',['had']='P177069',['Subtypes']='P177070',['symptoms']='P178000',['diagnosis']='P178001',['experienced by']='P178002',['included']='P178003',['diagnosed with']='P178004',['involved']='P178005',['covered']='P178006',['covered via']='P178007',['drawn from']='P178008',['shown by']='P178009',['delayed']='P178010',['median compared to']='P178011',['facility participants']='P178012',['report hcd usage']='P178013',['hcd use case']='P178014',['hcd step']='P178015',['hcd automation level']='P178016',['cancer stage']='P178017',['benefit directly']='P178018',['benefit statement']='P178019',['benefit magnitude']='P178020',['benefit category']='P178021',['research recommendation']='P178022',['report diversity']='P178023',['report quality']='P178024',['diversity statement']='P178025',['diversity magnitude']='P178026',['diversity type']='P178027',['diversity dimension']='P178028',['quality statement']='P178029',['quality magnitude']='P178030',['quality type']='P178031',['addressed RQ']='P178032',['Research Question 1']='P178033',['Research Question 2']='P178034',['Research Question 3']='P178035',['Research Question 4']='P178036',['report risks']='P178037',['risk statement']='P178038',['risk probability']='P178039',['risk damage']='P178040',['report artefacts']='P178041',['artefact type']='P178042',['artefact hcd step']='P178043',['AI tool']='P178044',['tool version']='P178045',['Investigation Method']='P178046',['method statement']='P178047',['participant role']='P178048',['test name']='P178049',['test hypothesis']='P178050',['control group']='P178051',['comparative groups']='P178052',['outdoor exposure measurement tool']='P178053',['randomized']='P178054',['myopic shift']='P178055',['axial length increase']='P178056',['race']='P178057',['P77004']='P178058',['antimicrobial class']='P178063',['ancestor MIC']='P178064',['evolved MIC']='P178065',['lineage']='P178066',['gene']='P178067',['P178065']='P178068',['P162001']='P178069',['P15375']='P178070',['biological replication']='P178071',['P178064']='P178072',['subject position']='hasSubjectPosition',['object position']='hasObjectPosition',['Taxonomy elaborated?']='P179000',['Open issues']={'P179002','P179001','P179003','P179004'},['Robot hand']='P179005',['vision']='P179006',['Detection type']='P179007',['Applied to robots']='P179008',['robot used']='P179009',['teleoperation device']='P179010',['visual feedback']='P179011',['haptic feedback']='P179012',['stabilizer']='P179013',['planning']='P179014',['motion generation']='P179015',['Type of investigation']='P180000',['Type Malicious App']='P180001',['Type of operation']='P180002',['LHAR type']='P180003',['LHAR height (µm)']='P180004',['Maximum aspect ratio (AR)']='P180005',['Number of ALD cycles']='P180006',['Sticking coefficient of TMA (cTMA)']='P180008',['Sticking coefficient of H₂O (cH₂O)']='P180009',['Phosphor material']='P180010',['Emission color']='P180011',['ALD scheme (precursors)']='P180012',['Deposition temperature [°C]']='P180013',['Coating material']='P180014',['Optimal coating thickness [nm]']='P180015',['Support material']='P180016',['ALD reactants (precursors)']='P180017',['Reported coating thickness [nm]']='P180018',['Growth per cycle (GPC) [nm]']='P180019',['Downstream NLP Task ']='P180020',['Focus languages']='P180021',['Linguistic focus']='P180022',['model input']='P180023',['Condition investigated']='P180024',['Symptoms/parameters measured ']='P180025',['Superior LLM in task']='P180026',['Host material']='P180027',['Dopant']='P180028',['Answer: llm as tool']='P180030',['Host Material Matrix']='P180031',['Annealing Temperature in °C']='P180032',['External Quantum Efficiency in %']='P180033',['Power Efficiency ×10⁻⁴']='P180034',['Threshold Voltage in Volts']='P180035',['Emission Lifetime in Milliseconds']='P180036',['Operational Device Lifetime in Hours']='P180037',['metal precursor']='P180039',['organic precursor']='P180040',['Growth per cycle (GPC) [Å]']='P180041',['Precursor 1']='P180042',['Precursor 2']='P180043',['Precursor 3']='P180044',['Precursor 4']='P180045',['M/F ratio']='P180046',['LLRL group / mean_SER']='P180047',['LLRL group / mean_AL']='P180048',['Control group / mean SER']='P180049',['Control group / mean AL']='P180050',['Real-world applicability']='P180051',['Data collection technique']='P180052',['validation data type']='P180053',['has human baseline']='P180054',['Feature engineering methods']={'P180055','P180056'},['Machine/Deep Learning Algorithms']='P180057',['Permission features']='P180058',['consideration of permissions']='P180059',['Features associated to permissions']='P180060',['level of explanation']='P180062',['XAI mechanism']='P180063',['portability ']='P180064',['baseline result']='P180065',['Species (common name)']='P180066',['Species (scientific name)']='P180067',['has experimental object']='P180068',['Growth stage']='P180069',['has experimental design']='P180071',['Sample size']='P180072',['Number of replicates']='P180073',['Duration (unit)']='P180075',['Duration (number)']='P180076',['Stress duration']='P180077',['Stress type']='P180078',['Irrigation instrument']='P180079',['Density (unit)']='P180080',['Density (number)']='P180081',['Plant density']='P180082',['Total number']='P180083',['Number of treatment ']='P180084',['has drought stress indicators']='P180086',['Soil condition']='P180088',['Air condition']='P180089',['Light condition']='P180090',['Soil moisture']='P180091',['Relative humidity']='P180092',['Vapor pressure deficit']='P180093',['Photoperiod']='P180094',['has experiment result']='P180095',['Series']='P180096',['has keywords']='P181000',['resulted in']='P181001',['RE task']='P181002',['NLP task']='P181003',['NLP task type']='P181004',['NLP task input']='P181005',['NLP task output']='P181006',['NLP task output type']='P181007',['NLP task output classification label']='P181008',['NLP task output extracted element']='P181009',['NLP task output translation mapping cardinality']='P181010',['NLP dataset']='P181011',['NLP data item']='P181015',['NLP data production time']='P181016',['NLP data source']='P181017',['NLP data source type']='P181018',['Number of data sources']='P181019',['NLP data source domain']='P181020',['NLP data abstraction level']='P181021',['NLP data type']='P181022',['NLP data format']='P181023',['Rigor of data format']='P181024',['Natural language']='P181025',['Public availability']='P181026',['License type']='P181027',['Dataset location']='P181028',['Location type']={'P181029','P181030'},['Annotation process']='P181031',['Annotator']='P181032',['Annotator assignment']='P181033',['Level of application domain experience']='P181034',['Annotator identity']='P181035',['Scheme establishement']='P181037',['Guideline availability']='P181038',['Shared material']='P181039',['Fatigue mitigation technique']='P181040',['Annotator agreement']='P181041',['Intercoder reliability metric']='P181042',['Conflict resolution']='P181044',['Measured agreement']='P181045',['Implemented approach']='P181046',['Running requirement']='P181047',['Dependency']='P181048',['Release format']='P181049',['Validation procedure']='P181050',['Baseline comparison']='P181051',['Baseline comparison type']='P181052',['Baseline comparison detail']='P181053',['architecture assumption']='P181054',['refinement strategy']='P181055',['models merged']='P181056',['science communication criteria']='P181057',['pandemic name']='P181058',['transmission type']='P181059',['theoretical frameworks']='P181060',['experiment group']='P181063',['APK analysis method']='P181064',['feature used for image generation']='P181065',['image generation technique']='P181066',['type of images generated']='P181067',['has stress condition design']='P181068',['experiment series']='P181069',['Geographic coordinate system']='P181070',['Elevation']='P181071',['Soil depth']='P181072',['prevalence (%)']='P181073',['age group/cohort']='P181074',['method of assessment']='P181075',['refractive status indicator']='P181076',['outcomes measured']='P181077',['Risk Assessment Analysis']='P182000',['Risk Levels']='P182001',['existing_prototype']='P182002',['risk assessement objective']='P182003',['risk_levels']='P182004',['baseline_SER']='P182005',['follow_up (years)']='P182006',['key_findings / control group']='P182007',['key_findings / treated group']='P182008',['study_participants']='P182009',['treatment/cessation time']='P183000',['treatment progression rate of AL (mm/year)']='P183001',['cessation progression rate of AL (mm/year)']='P183002',['rebound effect']='P183003',[' treatment progression rate of SE (D/year)']='P183004',['cessation progression rate of SE (D/year)']='P183005',['diagnostic criteria']='P183006',['population / myopes']='P183007',['population / emmetropes']='P183008',['bio fluid measured']='P183009',['State/Province']='P183010',['RE stage']='P183011',['Dataset Reference']='P183012',['Dataset Year']='P183013',['CCS concepts']='P183014',['Core approach ']='P183015',['risk metrics / outputs']='P183016',['size & family breakdown']='P183017',['distinctive properties']='P183018',['DR\",\"Conclusions\",\"Results\",\"Methods\",\"source\"']='P183019',['drift addressed']='P183020',['Core method / adaptation']='P183021',['Key results / metrics']='P183022',['distinctive property']='P183023',['Approach & model Architecture']='P183024',['Datasets & features used']='P183026',['Performance & key findings']='P183027',['Area in City']='P183028',['Year (end)']='P183029',['Month (end)']='P183030',['Date (end)']='P183031',['Time (end)']='P183032',['Year (start)']='P183033',['Month (start)']='P183034',['Date (start)']='P183035',['Time (start)']='P183036',['disease or clinical sign']='P183039',['clinical sign']='P183040',['genetic variant']='P183044',['medical condition (ancestral)']='P183045',['Simulation']='P183046',['Plant height']='P183048',['Species (variety)']='P183050',['Replicates treeless pastures']='P183051',['Standard deviation treeless pastures']='P183052',['mean value treeless pastures']='P183053',['Photosynthetically Active Radiation (PAR)']='P183054',['Fertilizer']='P183055',['Protected Cultivation']='P183056',['Species (genotypes)']='P183057',['Annual rainfall']='P183058',['Climate condition']='P183059',['Slope']='P183060',['Intercept']='P183061',['Disease (ancestral)']='P183062',['transfer learning strategy / source model']='P183063',['target domain & data representation']='P183064',['main model architecture / integration']='P183073',['performance & key results']='P183074',['hasFormat']='P183075',['hasSource']='P183076',['isGeneratedBy']='P183077',['hasProvenance']='P183078',['hasTargetClass']='P183079',['hasPropertyPath']='P183080',['hasDataType']='P183081',['hasMinCount / hasMaxCount']='P183082',['hasNodeKind']='P183083',['hasValue']='P183084',['has SHACL schema']='P183085',['Persistent Link / Access']='P183086',['Type / Class']='P183087',['generation approach']='P183088',['dataset characteristics']='P183089',['optimization techniques']='P183090',['ensemble strategy']='P183091',['LLM strategy']='P183092',['integration and hybridization']='P183093',['explainability and reasoning mechanisms']='P183094',['dataset and evaluation results']='P183095',['federated learning architecture']='P183096',['privacy and security mechanisms']='P183097',['non-IID handling and robustness strategy']='P183098',['Access / DOI / Link']='P183099',['hasSchema']='P183100',['Disease class']='P183101',['Disease class (ancestral)']='P183102',['genetic algorithm technique']='P183103',['learning model']='P183104',['blockchain usage']='P183105',['system architecture']='P183106',['Consensus and blockchain type']='P183107',['data characteristics and results']='P183108',['feature characteristics']='P183109',['effect of augmentation']='P183110',['food ingredient']='P183111',['usda link']='P183112',['usda food name']='P183114',['Hallucination Trigger']='P183115',['hallucination type']='P183116',['Surface adsorption']='P183118',['Surface removal']='P183119',['EPC (Ã/cycle)']='P183120',['Etching temperature']='P183121',['Class imbalance resolution technique']='P183122',['Semi-conductor ']='P183123',['Modification']='P183124',['Removal']='P183125',['Activation']='P183126',['Material type']='P183127',['number of coefficients']='P183128',['Precursor chemistries for fluorination']='P183129',['Process temp. (°C)']='P183130',['Etching rate (Å/cycle)']='P183131',['Ion energy in the removal step (Bias voltage)']='P183132',['Selectivity of material']='P183133',['Improving etch selectivity method']='P183134',['Method of removal chamber wall effect']='P183135',['Etching mechanism']='P183136',['1st step']='P183137',['2nd step']='P183138',['3rd step']='P183139',['limitation']='P183140',['Precursor Chemistries for Adsorption']='P183142',['Energy Source for Etching/Desorption']='P183143',['Material etched']='P183144',['Reactant 1']='P183145',['Reactant 2']='P183146',['Reactant 3']='P183147',['Reaction']='P183149',['Time of cycle']='P183151',['P183125']='P183152',['P183130']='P183153',['P183120']='P183154',['P183148']='P183155',['P183149']='P183156',['P183151']='P183157',['P9071']='P183158',['Concept Identifier']='P183159',['Relations']='P183160',['renewable energy source']='P183161',['opportunities']='P183162',['threats']='P183163',['knowledge type']='P183164',['hasdefinition']='P183165',['Instance of VLM (e.g. Llava)']='P183166',['Digital PROM']='P183167',['Data assimilation technique']='P183168',['Assimilated model']='P183169',['state variables updated']='P183170',['purpose of assimilation']='P183171',['assimilation window']='P183172',['has contributor']='P183173',['Contributor Roles']='P183174',['has population']='P183175',['image encoder']='P183176',['Some dummy comparison ']='P183177',['Some dummy descriptive text']='P183178',['Screenshot']='P183179',['Vitamin D3 Deficiency']='P183180',['Penetration technique']='P183181',['Ancestral population']='P183182',['Tech-Savviness']='P183183',['Future Orientation']='P183185',['Sustainability Intention']='P183186',['Attitude toward Sustainability']='P183187',['environmental impact']='P183188',['research artifact']='P183191',['research components']='P183192',['usda food ingredient']='P183194',['focus and intent']='P183195',['has contribution']='P183197',['paper goal']='P184000',['screen time / measure type']='P184001',['myopia progression rate']='P184002',['myopia / measure']='P184003',['myopia / definition']='P184004',['screen time / units of expose']='P184005',['male:female ratio']='P184006',['exposure duration']='P184007',['luminuous used']='P184008',['wavelength used']='P184009',['hasParameter']={'P184011','P184012','P184013','P184015','P184029','P184044','P184046','P184048','P184050','P184051','P184056','P184069','P184068','P184176','P184184','P184182','P184189','P184202'},['BFO_0000057']={'P184019','P184040','P184064','P184171','P184196','P184211'},['hasEmployedTool']={'P184018','P184033','P184063','P184173','P184192','P184207'},['investigatesProperty']={'P184022','P184043','P184053','P184177','P184188','P184205'},['startTime']={'P184023','P184034','P184061','P184172','P184193','P184212'},['investigates']={'P184024','P184045','P184057','P184174','P184190','P184201'},['BFO_0000063']={'P184027','P184041','P184058','P184165','P184194','P184208'},['realizesMethod']={'P184026','P184038','P184055','P184175','P184191','P184206'},['BFO_0000051']={'P184016','P184031','P184065','P184164','P184198','P184213'},['accessService']={'P184070','P184163'},['checksum']={'P184081','P184160'},['modified']={'P184073','P184161'},['downloadURL']={'P184074','P184157'},['temporalResolution']={'P184076','P184156'},['hasPolicy']={'P184079','P184153'},['spatialResolutionInMeters']={'P184078','P184150'},['rights']={'P184083','P184159'},['byteSize']={'P184071','P184154'},['issued']={'P184082','P184162'},['mediaType']={'P184077','P184151'},['accessRights']={'P184084','P184155'},['recommender']={'P184089','P184140'},['supportinghost']={'P184087','P184118'},['hasDiscipline']={'P184090','P184128'},['hasSubtitle']={'P184092','P184123'},['isTranslationOf']={'P184095','P184137'},['isPreviousVersionOf']={'P184091','P184121'},['isPartOf']={'P184093','P184120','P186028','P186083'},['hasPart']={'P184094','P184122'},['requiresProficiencyLevel']={'P184096','P184143'},['isNewVersionOf']={'P184097','P184135'},['isReplacedBy']={'P184099','P184145'},['references']='P184098',['isReferencedBy']={'P184100','P184126'},['isDescribedBy']={'P184103','P184132'},['isContinuedBy']={'P184105','P184138'},['authorUnordered']={'P184112','P184141'},['isVersionOf']={'P184104','P184129'},['hasTranslation']={'P184111','P184139'},['isSupplementTo']={'P184113','P184144'},['isSupplementedBy']={'P184106','P184146'},['continues']={'P184110','P184147'},['format']='P184114',['hasMediaType']={'P184109','P184134'},['isIdenticalTo']={'P184107','P184127'},['hasRorId']={'P184116','P186016','P186077'},['hasKindOfQuantity']='P184179',['hasNumericalValue']='P184181',['hasUnit']='P184180',['observation assimilated']='P184185',['RO_0002233']='P184203',['RO_0002230']='P184210',['RO_0002090']='P184209',['RO_0002234']='P184215',['RO_0002224']='P184214',['hydropower scheme type']='P184216',['power plant scale']='P184217',['power plant type']='P184218',['flow duration curve']='P184219',['treatment schedule']='P184220',['duration (months)']='P184221',['SER']='P184222',['irradiation parameters']='P184223',['Krippendorff – Fluency']='P184224',['Krippendorff\'s alpha – Fluency']='P184225',['Krippendorff\'s alpha – Atomicity']='P184226',['Krippendorff\'s alpha – De-Contextualization']='P184227',['Krippendorff\'s alpha – Faithfulness']='P184228',['Fleiss’ Kappa – Fluency']='P184229',['Fleiss’ Kappa – Atomicity']='P184230',['Fleiss’ Kappa – De-Contextualization']='P184231',['Fleiss’ Kappa – Faithfulness']='P184232',['Fluency']='P184233',['Atomicity']='P184234',['De-Contextualization']='P184235',['Methodolgy']='P184236',['Claims']='P184237',['Claim-Evidence links']='P184238',['Task Category']='P184239',['Semantic Web']='P184240',['Computational Validation of Claims Against Evidence']='P184241',['Step']='P184242',['Semantic Web Technology']='P184243',['Step 3']='P184244',['Step 4']='P184245',['Top-down']='P184246',['Bottom-up']='P184247',['Structure 1']='P184248',['Structure 2']='P184249',['Structure 3']='P184250',['Structure 4']='P184251',['Structure 5']='P184252',['LLM Use in Methodology']='P184253',['Type of Claimss']='P184254',['Domain Dependency']='P184255',['Crowdsourcing Component']='P184256',['Automated NLP Component']='P184257',['Semantic Layer (Ontological Foundation)']='P184258',['Syntactical Layer (LaTeX Extension)']='P184259',['Processing Workflow']='P184260',['Text Pre-processing']='P184261',['Method label']='P184262',['Integration pattern (IP)']='P184263',['Symbolic substrate (SS)']='P184264',['Neural function (NF)']='P184265',['Design domain']='P184266',['Key contribution & evidence']='P184267',['Type of Artifact']='P184268',['Evaluation Method BI']='P184269',['Argumentation']='P184270',['Field Experiment']='P184271',['Controlled Experiment']='P184272',['Data Science']='P184273',['Questionnaire']='P184274',['Motivating Example']='P184275',['Technical Experiment']='P184276',['None']='P184277',['Formal Proof']='P184278',['Survery']='P184279',['Lab Experiment']='P184280',['Design Science / Engineering']='P184281',['Illustrative Example']='P184282',['Tool Implementation']='P184283',['Implementation Prototype']='P184284',['Taxonomy']='P184285',['Real-World Data']='P184286',['Synthetic Data']='P184287',['Both Real-World and Synthetic Data']='P184288',['Mathematical Formulae']='P184289',['Undefined']='P184290',['Students']='P184291',['Practicioners']='P184292',['Valunteers']='P184293',['Volunteers']='P184294',['Data Accessible']='P184295',['Material Accessible']='P184296',['Existence']='P184297',['Type of Theory']='P184298',['Formal Theory']='P184299',['Social Science Theory']='P184300',['Both Formal and Social Science Theories']='P184301',['Emphasis']='P184302',['Theory']='P184303',['Artifact']='P184304',['Both Theory and Artifact']='P184305',['Formal Concepts']='P184306',['Algorithms']='P184307',['Independent Variables']='P184308',['Dependent Variables']='P184309',['Type of Inquiry']='P184310',['Formal Science']='P184311',['Information System Engineering']='P184312',['Scientific Study']='P184313',['Inductive Study']='P184314',['Meta-analysis']='P184315',['Industrial Application']='P184316',['food class']='P184317',['usda food class']='P184318',['target data']='P184319',['target concept']='P184321',['duplicate detection']='P184322',['duplicate resolution']='P184323',['duplicate prevention']='P184324',['duplicate detection technique']='P184325',['features of similarity']='P184326',['candidate generation']='P184327',['duplicate detection mode']='P184328',['duplicate resolution strategy']='P184329',['duplicate resolution mode']='P184330',['duplicate resolution result']='P185000',['conflict handling']='P185001',['audit trail']='P185002',['duplicate prevention mechanism']='P185003',['theoretical competence']='P186000',['Artifact / Contribution']='P186001',['Investigated Property']='P186002',['Plasmodium species']='P186004',['infection pattern']='P186005',['parasitemia level']='P186006',['treatment status']='P186007',['host type']='P186008',['Physiological status']='P186009',['nutritional status']='P186010',['lastName']={'P186015','P186065'},['issn']={'P186011','P186063'},['orcidId']={'P186012','P186066'},['firstName']={'P186018','P186064'},['abstract']={'P186033','P186082'},['dateCreated']={'P186027','P186079'},['headline']={'P186025','P186074'},['editor']={'P186022','P186024','P186062','P186080'},['datePublished']={'P186034','P186072'},['identifier']={'P186035','P186081'},['replaces']='P186036',['Anthropometric indicator']='P186038',['Micronutrients evaluated']='P186039',['Iron status markers']='P186040',['Anemia evaluation']='P186041',['anemia indicators']='P186042',['Bone compartment affected']='P186043',['Bone marrow pathology']='P186044',['Bone remodeling markers']='P186045',['Bone health outcomes']='P186046',['Skeletal development impact']='P186047',['Inflammatory mediators']='P186048',['Immune signaling pathways']='P186049',['Anemia mechanism']='P186050',['Bone–immune interaction']='P186051',['Nutrition–malaria–bone link identified.']='P186052',['Nutrition–malaria–bone link identified']='P186053',['Anthropometric indicators']='P186054',['Logical Expressivity']='P186055',['Core components']='P186056',['Design principles']='P186057',['Implementation approach']='P186058',['paper_year']='P186085',['Product_identification']='P186086',['Lifecycle_traceability']='P186087',['Warranty_duration']='P186088',['Warranty_scope_text']='P186089',['Warranty_payment_rules']='P186090',['Multi_party_coverage']='P186091',['RMA_workflows']='P186092',['RDF_OWL_format']='P186093',['LOV_registered']='P186094',['Article URL']='P186097',['Software URL']='P186095',['has ROR ID']='P186096',['Journal URL']='P186098',['has first name']='P186100',['Date Submitted']='P186099',['has last name']='P186101',['has ORCID ID']='P186102',['Landscape Analysis']='P186103',['Community Engagement']='P186104',['Ontology Development']='P186105',['Application Pattern']='P186106',['Embodiment']='P186107',['Publishing Date']='P186108',['Subset or Tasks trained']='P186109',['Kaggle Leaderboard']='P186110',['Type of Dataset']='P186111',['Input Transformation']='P186112',['Transformation Method']='P186113',['Transformation Role']='P186114',['NL Component']='P186115',['Subset or Tasks evaluated']='P186116',['Diverse Inference']='P186117',['Certainty']='P186118',['#Tasks Trained']='P186119',['Scalability to Full ARC']='P186120',['Tasks Evaluated Private ARC-1']='P186121',['Score (%) Private ARC-1']='P186122',['Tasks Evaluated Private ARC-2']='P186123',['Score (%) Private ARC-2']='P186124',['Costs per Task ARC-1 ($)']='P186125',['Costs per Task ARC-2']='P186126',['Metric Name']='P186127',['Tasks Evaluated Public ARC-2']='P186128',['Score (%) Public ARC-2']='P186129',['Evaluation Protocol']='P186130',['Hardware Spec']='P186131',['Tasks Evaluated Public ARC-1']='P186132',['Score (%) Public ARC-1']='P186133',['Runtime ARC-1']='P186134',['Other Metrics (%)']='P186135',['Comparitve Results']='P186136',['Human Benchmark']='P186137',['Error Types']='P186138',['Unique Successes']='P186139',['Runtime ARC-2']='P186140',['Unique Solves (TaskID)']='P186141',['page(s)']='P186142',['DS assumption']='P186143',['noise_level']='P186144',['quality_metric']='P186145',['benchmark dataset']='P186146',['relation_type']='P186147',['benchmark_dataset']='P186148',['model_architecture']='P186149',['supervision_type']='P186150',['Curator involvement']='P186151',['discipline']='P186152',['target facets of a review']='P186153',['aspect facets of a review']='P186154',['GPC (Å/cycle)']='P187000',['Carrier Gas']='P187001',['Purging Gas']='P187002',['Dosing Time (seconds)']='P187003',['Purging Time (seconds)']='P187004',['Number of Cycles']='P187005',['Disease Type']='P187006',['population group']='P187007',['Food/Diet intervention']='P187008',['Nutrient focus']='P187009',['Duration of intervention']='P187010',['material link']='P187011',['uses models']='P187012',['Involved methods']={'P187013','P187014'},['Levels Completed ARC-3']='P188001',['Games Completed ARC-3']='P188002',['Score (%) Public ARC-3']='P188003',['Costs per Task ARC-3']='P188004',['Runtime ARC-3 (Actions Taken)']='P188005',['Partial/Atomic Solve (%)']='P188006',['social review constructs']='P188007',['error aspects of a review']='P188008',['source of the peer review evaluation dataset']='P188009',['LLMs tested as peer review tools']='P188010',['Merge Space']='P188011',['argument facets of a review']='P188012',['data_repo_url']='P188013',['AI tasks for peer review assistance']='P188014',['research object']='P188015',['research method']='P188016',['repeatability validity']='P188018',['Tasks Evaluated Public ARC-3']='P188020',['argument facets of a rebuttal']='P188021',['review evaluation facets']='P188022',['argumentative facet']='P188023',['polarity facet']='P188024',['cognitive function']='P188025',['Training Paradigm']='P188026',['Primary Datasets']='P188027',['Evaluation Benchmarks']={'P188028','P188030'},['training objectives']='P188033',['lazy review aspects']='P188034',['Gene_Class']='P188035',['GeneID']='P188036',['Gene Type']={'P188037','P188043'},['Synonyms']={'P188038','P188040','P188041','P188044'},['Other designations']={'P188039','P188042'},['DOI: 10.5683/SP3/LCTDKZ']='P188045',['modeling language']='P188046',['modeling method']='P188047',['AI scientist']='P188048',['Key contributions']='P188049',['Key functional factors']='P188050',['Safety mechanism']='P188051',['State space model']='P188052',['Inference paradigm']='P188053',['Mathematical formulation']='P188054',['Intended use / scope']='P188055',['Output artifact']='P188056',['literature search method']='P188057',['literature search representativeness']='P188058',['type of evidence']='P188059',['synthesis method']='P188060',['reporting guideline']='P188061',['quality assessment']='P188062',['update']='P188063',['contribution:contribution_label']='P188064',['Versioning approach']='P188065',['Temporal metadata model']='P188066',['Time dimension']='P188067',['Continuous validity modeling']='P188068',['Metadata representation method']='P188069',['SPARQL grammar extension required']='P188070',['Custom physical storage structures required']='P188071',['Cross-store portability']='P188072',['Version materialization query support']='P188073',['Delta materialization query support']='P188074',['Full SPARQL query support']='P188075',['Automatic query rewriting']='P188076',['SPARQL query patterns provided']='P188077',['query set']='P188078',['about']='P188079',['accessMode']='P188080',['distribution']='P188081',['includedInDataCatalog']='P188082',['measurementMethod']='P188083',['variableMeasured']='P188084',['accessModeSufficient']='P188085',['accessibilityAPI']='P188086',['accessibilityControl']='P188087',['accessibilityFeature']='P188088',['accessibilityHazard']='P188089',['accessibilitySummary']='P188090',['accountablePerson']='P188091',['acquireLicensePage']='P188092',['aggregateRating']='P188093',['alternativeHeadline']='P188094',['archivedAt']='P188095',['associatedMedia']='P188096',['audio']='P188097',['award']='P188098',['character']='P188099',['commentCount']='P188100',['conditionsOfAccess']='P188101',['contentLocation']='P188102',['contentRating']='P188103',['contentReferenceTime']='P188104',['copyrightHolder']='P188105',['copyrightNotice']='P188106',['copyrightYear']='P188107',['correction']='P188108',['countryOfOrigin']='P188109',['creativeWorkStatus']='P188110',['creditText']='P188111',['dateModified']='P188112',['digitalSourceType']='P188113',['discussionUrl']='P188114',['displayLocation']='P188115',['editEIDR']='P188116',['educationalAlignment']='P188117',['educationalLevel']='P188118',['educationalUse']='P188119',['encodingFormat']='P188120',['expires']='P188121',['interactionStatistic']='P188122',['interactivityType']='P188123',['interpretedAsClaim']='P188124',['isAccessibleForFree']='P188125',['isFamilyFriendly']='P188126',['learningResourceType']='P188127',['locationCreated']='P188128',['mainEntity']='P188129',['materialExtent']='P188130',['offers']='P188131',['publication']='P188132',['publisherImprint']='P188133',['publishingPrinciples']='P188134',['recordedAt']='P188135',['releasedEvent']='P188136',['review']='P188137',['schemaVersion']='P188138',['sdDatePublished']='P188139',['sdLicense']='P188140',['sdPublisher']='P188141',['spatial']='P188142',['spatialCoverage']='P188143',['teaches']='P188144',['temporal']='P188145',['temporalCoverage']='P188146',['text']='P188147',['thumbnail']='P188148',['thumbnailUrl']='P188149',['timeRequired']='P188150',['translationOfWork']='P188151',['typicalAgeRange']='P188152',['wordCount']='P188153',['workExample']='P188154',['workTranslation']='P188155',['additionalType']='P188156',['mainEntityOfPage']='P188157',['potentialAction']='P188158',['subjectOf']='P188159',['applicationCategory']='P188160',['applicationSuite']='P188162',['availableOnDevice']='P188163',['countriesNotSupported']='P188164',['countriesSupported']='P188165',['featureList']='P188166',['fileSize']='P188167',['installUrl']='P188168',['memoryRequirements']='P188169',['processorRequirements']='P188170',['releaseNotes']='P188171',['runtimePlatform']='P188172',['softwareAddOn']='P188173',['softwareHelp']='P188174',['softwareRequirements']='P188175',['storageRequirements']='P188177',['compare rosetta stone contribution']='compareRosettaStoneContribution',['Keynote Speaker']='P189000',['Keynote Title']='P189001',['Best Paper']='P189002',['Best Paper Authors']='P189003',['motives']='P190000',['has study region']='P190002',['has method']='P190003',['has finding']='P190004',['has source organization']='P190006',['number of scenarios']='P190007',['number of building profiles']='P190008',['number of cities']='P190009',['Detection']='P191000',['Mitigation']='P191001',['Ground Truth Source']={'P191002','P191003'},['Nutritional deficiency associated to the disease']='P191005',['type of diet']='P191006',['mechanism of action']='P191007',['pathogen']='P191008',['medical treatment']='P191009',['Integration Mechanism']='P191010',['Communication Protocol']='P191011',['Security Model']='P191012',['Tool Integration Scalability']='P191013',['Coupling Level']='P191014',['Credential Management']={'P191015','P191016','P191017'},['Context Efficiency']='P191018',['Tool Discovery']='P191019',['Abstract Note']='P191020',['Date Added']='P191021',['Access Date']='P191022',['Library Catalog']='P191023',['File Attachments']='P191024',['biomarkers']='P192000',['follow-up Period']='P192001',['DesignPattern']='P192002',['Boxology']='P192003',['new']='P192004',['hasPattern']='P192005',['<http://tool4boxology.org/DesignPattern>']='P192006',['hasInput']='P192007',['hasOutput']='P192008',['hasProcess']='P192009',['problem adressed']='P192010',['Secondary outcomes']='P192011',['intervention frequency']='P192012',['intervention time of day']='P192013',['null or negative findings']='P192014',['illuminance']='P192015',['open access data']='P193000',['Answer: What factors contribute to successful community-driven conservation efforts?']='P193001',['mitigation techniques']='P194000',['data quality activity']='P194001',['testing samples']='P195000',['number of risk factors']='P195001',['risk factors']='P195002',['Agent Architecture']='P195003',['Planning Behavior']='P195004',['Tool Usage']='P195005',['The Problem']='P195006',['The Objective']='P195007',['experiment_metadata']='P195008',['experiment metadata']='P195009',['experiment id']='P195010',['experiment date']='P195011',['operator']='P195012',['lab notebook reference']='P195013',['replicates']='P195014',['notes']='P195015',['sample preparation']='P195016',['sample type']='P195017',['sample source']='P195018',['extraction method']='P195019',['sample purity']='P195020',['sample degradation']='P195021',['archival sample']='P195022',['reverse transcription']='P195023',['performed']='P195024',['enzyme']='P195025',['primer type']='P195026',['reagent details']='P195027',['concentration']='P195028',['volume']='P195029',['catalog number']='P195030',['lot number']='P195031',['single cell pcr']='P195032',['isolation method']='P195033',['amplification bias']='P195034',['preamplification']='P195035',['preamplification method']='P195036',['reaction components']='P195037',['template dna']='P195038',['initial quantity']='P195039',['purity']='P195040',['degradation status']='P195041',['contamination']='P195042',['forward primer']='P195043',['sequence']='P195044',['tm']='P195045',['gc content']='P195046',['modifications']='P195047',['reverse primer']='P195048',['nested primers']='P195049',['allele specific primers']='P195050',['target allele']='P195051',['competimer primers']='P195052',['percentage']='P195053',['allele-specific oligonucleotides']='P195054',['probes']='P195055',['labeling']='P195056',['hybridization conditions']='P195057',['buffer']='P195058',['wash conditions']='P195059',['fluorogenic probes']='P195060',['probe type']='P195061',['reporter dye']='P195062',['quencher dye']='P195063',['target description']='P195064',['dna polymerase']='P195065',['heat stable']='P195066',['nuclease activity']='P195067',['reverse transcriptase activity']='P195068',['inhibitor tolerance']='P195069',['dntps']='P195070',['ratio']='P195071',['dATP']='P195072',['dTTP']='P195073',['dCTP']='P195074',['dGTP']='P195075',['dUTP']='P195076',['buffer system']='P195077',['mgcl2 concentration']='P195078',['salt concentration']='P195079',['dmso concentration']='P195080',['betaine concentration']='P195081',['formamide concentration']='P195082',['dtt concentration']='P195083',['tween_20 concentration']='P195084',['internal controls']='P195085',['carryover prevention']='P195086',['ung treatment']='P195087',['thermal cycling conditions']='P195088',['instrument']='P195089',['initial denaturation']='P195090',['reverse transcription step']='P195091',['cycles']='P195092',['denaturation']='P195093',['annealing']='P195094',['fluorescence acquisition']='P195095',['acquisition mode']='P195096',['final extension']='P195097',['number of cycles']='P195098',['hold']='P195099',['ramp rate']='P195100',['melting curve analysis']='P195101',['start temperature']='P195102',['end temperature']='P195103',['increment']='P195104',['hold time']='P195105',['ddpcr specific']='P195106',['droplet generation']='P195107',['oil type']='P195108',['droplet volume']='P195109',['number of droplets']='P195110',['droplet reading']='P195111',['threshold setting']='P195112',['rain droplet handling']='P195113',['poisson correction']='P195114',['limit of blank']='P195115',['limit of detection']='P195116',['amplicon']='P195117',['restriction sites']='P195118',['polymorphic']='P195119',['details']='P195120',['gel electrophoresis']='P195121',['gel type']='P195122',['gel concentration']='P195123',['dye']='P195124',['run time']='P195125',['quantitative analysis']='P195126',['baseline correction']='P195127',['cycle range']='P195128',['threshold']='P195129',['threshold method']='P195130',['curve analysis method']='P195131',['efficiency model']='P195132',['cq value']='P195133',['cy0 value']='P195134',['f0 value']='P195135',['fq threshold']='P195136',['fb baseline']='P195137',['arn']='P195138',['normalization']='P195139',['efficiency calculation']='P195140',['dynamic range']='P195141',['amplification efficiency']='P195143',['ddpcr analysis']='P195144',['absolute quantification']='P195145',['droplet classification']='P195146',['positive droplets']='P195147',['negative droplets']='P195148',['total droplets']='P195149',['mutation detection']='P195150',['mutation type']='P195151',['allele frequency']='P195152',['dot blot']='P195153',['membrane type']='P195154',['denaturation method']='P195155',['fixation method']='P195156',['probe label']='P195157',['autoradiography']='P195158',['exposure time']='P195159',['intensification screen']='P195160',['restriction analysis']='P195161',['enzymes']='P195162',['digestion conditions']='P195163',['sequential digestion']='P195164',['efficiency metrics']='P195165',['total amplification']='P195166',['calculation method']='P195167',['reaction volume']='P195168',['experimental parameters']='P195169',['specificity']='P195170',['mutagenesis']='P195171',['sequence added']='P195172',['automation']='P195173',['contamination control']='P195174',['inhibition control']='P195175',['negative control']='P195176',['wild type control']='P195177',['no template control']='P195178',['no reverse transcriptase control']='P195179',['positive control']='P195180',['template control']='P195181',['reverse transcriptase control']='P195182',['metadata']='P196000',['study id']='P196001',['research institution']='P196002',['feedstock']='P196003',['᯽']='P196004',['𖥕᯽𖥕']={'P196005','P197022'},['𓇬']='P196006',['moisture content']='P197000',['particle size']='P197001',['preprocessing']='P197002',['contaminants']='P197003',['chlorine content ppm']='P197004',['heavy metals ppm']='P197005',['subtype']='P197006',['activation method']='P197007',['reusability cycles']='P197008',['deactivation mechanism']='P197009',['coke formation rate']='P197010',['reactor']='P197011',['scale']='P197012',['inert gas flow rate']='P197013',['process conditions']='P197014',['heating rate']='P197015',['residence time']='P197016',['atmosphere']='P197017',['carrier gas']='P197018',['flow rate']='P197019',['experimental setup']='P197020',['validation method']='P197021',['liquid']='P197023',['gas']='P197024',['char']='P197025',['𖥕᯽𖥕 𖥕᯽𖥕']='P197026',['mass balance closure']='P197027',['product composition']='P197028',['ⵔ·ⵔ𖥕ⵔ·ⵔ᯽ⵔ·ⵔ𖥕ⵔ·ⵔ ⵔ·ⵔ𖥕ⵔ·ⵔ᯽ⵔ·ⵔ𖥕ⵔ·ⵔ']={'P197029','P197039','P197042','P197050','P197051'},['aliphatics pct']='P197030',['ꔹ𖥕ꔹ᯽ꔹ𖥕ꔹ ꔹ𖥕ꔹ᯽ꔹ𖥕ꔹ']={'P197031','P197046'},['aromatics pct']='P197032',['oxygenates pct']='P197033',['liquid quality']='P197034',['hhv mj per kg']='P197035',['chlorine ppm']='P197036',['density g per ml']='P197037',['viscosity cst']='P197038',['methane pct']='P197040',['hydrogen pct']='P197041',['co2 pct']='P197043',['co pct']='P197044',['c2 c4 pct']='P197045',['carbon content pct']='P197047',['ash content pct']='P197048',['catalyst content pct']='P197049',['analytical characterisation']='P197052',['feedstock analysis']='P197053',['product analysis']='P197054',['catalyst analysis']='P197055',['conversion efficiency percent']='P197056',['energy efficiency']='P197057',['catalyst lifetime']='P197058',['alloy designation']='P197060',['chemical composition']='P197061',['heat treatment condition']='P197062',['specimen geometry']='P197063',['notch condition']='P197064',['gauge length']='P197065',['cross sectional area']='P197066',['loading type']='P197067',['loading parameters']='P197068',['stress amplitude']='P197069',['strain amplitude']='P197070',['stress ratio']='P197071',['loading frequency']='P197072',['test environment']='P197073',['medium']='P197074',['equipment']='P197075',['testing machine']='P197076',['testing standard']='P197077',['outputs']='P197078',['number of cycles to failure']='P197079',['failure criterion']='P197080',['sNCurve']='P197081',['basquin equation']='P197082',['fatigue strength coefficient']='P197083',['fatigue strength exponent']='P197084',['coffin manson parameters']='P197085',['fatigue ductility coefficient']='P197086',['fatigue ductility exponent']='P197087',['fatigue limit']='P197088',['failure mode']='P197089',['initiation site']='P197090',['failure classification']='P197091',['fracture surface characteristics']='P197092',['variant']='P197093',['age range']='P197094',['min']='P197095',['max']='P197096',['clinical population']='P197097',['practice']='P197098',['duration days']='P197099',['monitored']='P197100',['stimuli']='P197101',['colors']='P197102',['words']='P197103',['neutral']='P197104',['emotional']='P197105',['response']='P197106',['modality']='P197107',['mapping']='P197108',['keys']='P197109',['timing']='P197110',['stimulus']='P197111',['iti']='P197112',['design']='P197113',['trials']='P197114',['randomization']='P197115',['instruments']='P197116',['software']='P197117',['voice']='P197118',['rt precision']='P197119',['display calibrated']='P197120',['behavior']='P197121',['reaction times']='P197122',['error rates']='P197123',['interference']='P197124',['standard']='P197125',['neuroimaging']='P197126',['eeg']='P197127',['channels']='P197128',['impedance']='P197129',['fmri']='P197130',['scanner']='P197131',['tr']='P197132',['te']='P197133',['voxel']='P197134',['parameters']='P197135',['analysis']='P197136',['outliers']='P197137',['sd']='P197138',['min rt']='P197139',['max rt']='P197140',['accuracy adjusted']='P197141',['clinical']='P197142',['coupling']='P197143',['pass or fail']='P198000',['demographic']='P198001',['iso_code']='P198002',['Category (section)']='P198003',['sample id']='P198004',['organism']='P198005',['tissue type']='P198006',['source material']='P198007',['storage conditions']='P198008',['prior to extraction']='P198009',['post extraction']='P198010',['treatment or condition']='P198011',['rna extraction']='P198012',['kit details']='P198013',['kit name']='P198014',['kit version']='P198015',['protocol reference']='P198016',['dnase treatment']='P198017',['yield']='P198018',['starting material']='P198019',['extraction date']='P198020',['rna input']='P198021',['quantity unit']='P198022',['quality control']='P198023',['rna integrity']='P198024',['library quality']='P198025',['rin']='P198026',['dv200']='P198027',['bioanalyzer profile']='P198028',['quality assessment date']='P198029',['spectrophotometric ratios']='P198030',['a260_a280']='P198031',['a260_a230']='P198032',['average insert size']='P198033',['min size']='P198034',['max size']='P198035',['library concentration']='P198036',['quantification method']='P198037',['adapter dimer contamination']='P198038',['gc content bias']='P198039',['detected']='P198040',['bias direction']='P198041',['assessment method']='P198042',['alignment rate']='P198043',['exon capture rate']='P198044',['coverage variance']='P198045',['library preparation']='P198046',['transcript enrichment']='P198047',['strategy']='P198048',['target rna']='P198049',['protocol or kit']='P198050',['library type']='P198051',['strand specific method']='P198052',['umi usage']='P198053',['adapter sequences']='P198054',['read1 adapter']='P198055',['read2 adapter']='P198056',['adapter ligation']='P198057',['adapter type']='P198058',['adapter sequence 5prime']='P198059',['adapter sequence 3prime']='P198060',['ligation strategy']='P198061',['phosphorothioate oligos used']='P198062',['indexing']='P198063',['index type']='P198064',['index sequence']='P198065',['index length']='P198066',['fragmentation and amplification']='P198067',['fragmentation method']='P198068',['target size']='P198069',['fragmentation temperature']='P198070',['fragmentation time']='P198071',['pcr cycles']='P198072',['polymerase']='P198073',['amplification method']='P198074',['purification method']='P198075',['size selection method']='P198076',['library preparation notes']='P198077',['sequencing']='P198078',['flow cell type']='P198079',['flow cell patterned']='P198080',['read configuration']='P198081',['read type']='P198082',['read length']='P198083',['read1']='P198084',['read2']='P198085',['sequencing depth']='P198086',['run id']='P198087',['multiplexing pool size']='P198088',['sequencing date']='P198089',['sequencing notes']='P198090',['primary data processing']='P198091',['reference genome']='P198092',['gene annotation']='P198093',['trimming tool']='P198094',['adapter filtering tool']='P198095',['alignment tool']='P198096',['quantification tool']='P198097',['normalization method']='P198098',['differential expression tool']='P198099',['software versions']='P198100',['processing date']='P198101',['processing notes']='P198102',['experimental design']='P198103',['batch information']='P198104',['batch id']='P198105',['batch correction method']='P198106',['comparison groups']='P198107',['design type']='P198108',['study title']='P198109',['lab']='P198110',['funding source']='P198111',['public repository accession']='P198112',['submission date']='P198113',['project id']='P198114',['biological source material']='P198115',['tissue or cell type']='P198116',['treatment condition']='P198117',['biological replicates']='P198118',['sample collection protocol']='P198119',['rna extraction and quality metrics']='P198120',['a260_280 ratio']='P198121',['library preparation protocol']='P198122',['strandedness']='P198123',['fragmentation strategy']='P198124',['amplification cycles']='P198125',['umi details']='P198126',['umi length']='P198127',['umi position']='P198128',['deduplication method']='P198129',['sequencing platform and configuration']='P198130',['raw data quality control']='P198131',['adapter trimming']='P198132',['quality filtering']='P198133',['qc assessment tool']='P198134',['read alignment']='P198135',['genome assembly']='P198136',['annotation source']='P198137',['annotation version']='P198138',['expression quantification']='P198139',['count summarization method']='P198140',['normalization aware']='P198141',['low count filtering']='P198142',['min counts per sample']='P198143',['min samples with min counts']='P198144',['statistical analysis']='P198145',['model framework']='P198146',['design formula']='P198147',['covariates']='P198148',['dispersion estimation']='P198149',['batch correction']='P198150',['batch variable']='P198151',['multiple testing correction']='P198152',['significance thresholds']='P198153',['adjusted pvalue threshold']='P198154',['log2 fold change threshold']='P198155',['output artifacts']='P198156',['reproducibility metadata']='P198157',['workflow engine']='P198158',['computational environment']='P198159',['random seed']='P198160',['parameter settings']='P198161',['detector geometry']='P198162',['detector radius']='P198163',['detector height']='P198164',['inner vessel radius']='P198165',['outer vessel radius']='P198166',['pmt count']='P198167',['pmt coverage']='P198168',['pmt positions']='P198169',['pmt id']='P198170',['fiducial volume']='P198171',['fiducial radius']='P198172',['fiducial height']='P198173',['boundary distance cut']='P198174',['vertex reconstruction quality cut']='P198175',['position dependent resolution variation']='P198176',['input data and detector models']='P198177',['input data format']='P198178',['hit time']='P198179',['hit charge']='P198180',['first hit time']='P198181',['total nhits']='P198182',['detector optical model']='P198183',['scintillation yield']='P198184',['scintillation time profile']='P198185',['fast decay constant']='P198186',['slow decay constant']='P198187',['cherenkov yield']='P198188',['re emission probability']='P198189',['rayleigh scattering length']='P198190',['effective refractive index']='P198191',['group velocity correction']='P198192',['pmt response model']='P198193',['quantum efficiency']='P198194',['transit time spread']='P198195',['dark noise rate']='P198196',['single photoelectron resolution']='P198197',['afterpulsing probability']='P198198',['pmt type']='P198199',['background model']='P198200',['accidental coincidences rate']='P198201',['accidental components']='P198202',['correlated background rate']='P198203',['correlated backgrounds']='P198204',['isotope']='P198205',['energy spectrum']='P198206',['cosmogenic isotopes']='P198207',['detector technology']='P198208',['multi_zone design']='P198209',['target vessel radius']='P198210',['buffer vessel radius']='P198211',['target material']='P198212',['gadolinium doping']='P198213',['gd concentration']='P198214',['neutron capture efficiency']='P198215',['neutron capture time']='P198216',['muon veto system']='P198217',['veto type']='P198218',['muon detection efficiency']='P198219',['reconstruction algorithms']='P198220',['vertex reconstruction algorithm']='P198221',['algorithm type']='P198222',['likelihood function definition']='P198223',['minimization algorithm']='P198224',['neural network architecture']='P198225',['loss function type']='P198226',['energy reconstruction algorithm']='P198227',['non linearity correction model']='P198228',['birks constant']='P198229',['cherenkov contribution']='P198230',['uniformity correction map']='P198231',['map type']='P198232',['coordinate system']='P198233',['total charge summation']='P198234',['machine learning regressor']='P198235',['energy scale calibration method']='P198236',['direction reconstruction algorithm']='P198237',['cherenkov scintillation separation method']='P198238',['hit order']='P198239',['directional angle']='P198240',['cherenkov group velocity correction']='P198241',['time of flight correction']='P198242',['hit time likelihood function']='P198243',['angular pdf model']='P198244',['cos theta cherenkov angle']='P198245',['correlated integrated directionality']='P198246',['enabled']='P198247',['nth hit cut']='P198248',['angular binning']='P198249',['particle identification']='P198250',['pulse shape discriminator']='P198251',['topology features']='P198252',['classifier type']='P198253',['alpha beta separation power']='P198254',['pid rejection ratio']='P198255',['convolutional visual network']='P198256',['input views']='P198257',['convolutional layers']='P198258',['kernel size']='P198259',['stride']='P198260',['pooling layers']='P198261',['dropout rate']='P198262',['siamese style']='P198263',['output classes']='P198264',['calibration strategy']='P198265',['calibration source types']='P198266',['deployment positions']='P198267',['calibration frequency']='P198268',['spallation neutron usage']='P198269',['energy anchor points']='P198270',['cherenkov calibration']='P198271',['gamma sources used']='P198272',['group velocity correction measured']='P198273',['machine learning configuration']='P198274',['network architecture']='P198275',['architecture type']='P198276',['number of layers']='P198277',['residual connections']='P198278',['training configuration']='P198279',['learning rate schedule']='P198280',['batch size']='P198281',['number of epochs']='P198282',['train validation test split']='P198283',['validation']='P198284',['test']='P198285',['data augmentation techniques']='P198286',['loss function']='P198287',['regularization techniques']='P198288',['weight decay']='P198289',['label smoothing']='P198290',['simulation and training dataset']='P198291',['monte carlo generator']='P198292',['physics process list']='P198293',['training sample size']='P198294',['energy range']='P198295',['vertex distribution']='P198296',['detector conditions modeled']='P198297',['semi supervised learning']='P198298',['pseudo label source']='P198299',['additional data size']='P198300',['performance validation']='P198301',['reconstruction performance metrics']='P198302',['vertex resolution RMS']='P198303',['vertex bias']='P198304',['energy resolution']='P198305',['energy scale residual non linearity']='P198306',['angular resolution']='P198307',['classification efficiency']='P198308',['systematic uncertainties']='P198309',['energy scale uncertainty']='P198310',['vertex reconstruction uncertainty']='P198311',['direction reconstruction uncertainty']='P198312',['background subtraction uncertainty']='P198313',['background model uncertainty']='P198314',['detector response uncertainty']='P198315',['fiducial volume uncertainty']='P198316',['reactor flux uncertainty']='P198317',['group velocity correction uncertainty']='P198318',['position reconstruction bias']='P198319',['ibd performance metrics']='P198320',['neutron detection efficiency']='P198321',['positron detection efficiency']='P198322',['coincidence window']='P198323',['prompt delayed distance cut']='P198324',['trigger and event selection']='P198325',['trigger threshold']='P198326',['event selection criteria']='P198327',['fiducial volume cut']='P198328',['pulse shape discrimination']='P198329',['multiplicity cut']='P198330',['cvn selection']='P198331',['cvn classifier threshold']='P198332',['cvn pid threshold']='P198333',['code available']='P198334',['demo available']='P198335',['architecture profile']='P198336',['benchmark results']='P198337',['backbone model']='P198338',['reasoning']='P198339',['observation modality']='P198340',['memory model']='P198341',['key limitations']='P198342',['test version']='P198343',['test form']='P198344',['scoring dimensions']='P198345',['scoring method']='P198346',['norm version']='P198347',['age grade level']='P198348',['population characteristics']='P198349',['administration mode']='P198350',['administration time']='P198351',['language translation']='P198352',['scorer qualifications']='P198353',['testing environment']='P198354',['warm up procedures']='P198355',['composite score']='P198356',['task count']='P198357',['primary objective']='P198358',['abstraction level']='P198359',['Proposed Method / System']='P198361',['Underlying AI / ML Technique']='P198362',['Domain / Modality']='P198363',['Knowledge Graph Involvement']='P198364',['Datasets / Benchmarks Used']='P198365',['Baseline Comparisons']='P198366',['Key Findings / Results']='P198367',['Novelty / Contributions']='P198368',['Limitations / Open Problems']='P198369',['Knowledge Representation Approach']='P198370',['Domain / Application Area']='P198371',['Key Artifact or System Produced']='P198372',['Data Sources / Input Data']='P198373',['NLP / AI Techniques Used']='P198374',['Key Findings / Contributions']='P198375',['FAIR Data Principles Addressed']='P198376',['Intended Users / Target Audience']='P198377',['Limitations & Future Work']='P198378',['Interoperability / Integration Features']='P198379',['Ontologies / Standards Referenced']='P198380',['Approach family']='P198381',['Uses visualization grammar']='P198382',['Uses diffusion or image generation model']='P198383',['Relevance for ORKG']='P198384',['Uses knowledge graph']='P198385',['knowledge graph used for visualization']='P198386',['Bee Country']='P198387',['extraction level']='P198388',['extraction level ']='P199000',['Number of supported visualization types']='P199001',['Number of evaluated users']='P199002',['Number of KG entities']='P199003',['Number of entity classes']='P199004',['Number of facts']='P199005',['individual light history']='P199006',['objectif']='P199008',['hasAncestor']='P199009',['hasSpouse']='P199010',['hasChild']='P199011',['hasTitle']='P199012',['hasMaternalLineage']='P199013',['hasFather']='P199014',['hasMother']='P199015',['hasGreatGrandparent']='P199016',['hasBrother']='P199017',['hasNephew']='P199018',['hasLegalValidation']='P199019',['hasScientificThesis']='P199020',['hasValidationSource']='P199021',['isDocumentedIn']='P199022',['hasORCID']='P199023',['hasGND']='P199024',['cell origin']='P199025',['cell culture type']='P199026',['sex']='P199027',['culture dimensionality']='P199028',['surface coating']='P199029',['seeding method']='P199030',['seeding density']='P199031',['cell arrangement']='P199032',['cell culture media']='P199033',['recording medium']='P199034',['days in vitro']='P199035',['electrode']='P199036',['coating material']='P199037',['geometry']='P199038',['spacing']='P199039',['total number']='P199040',['array geometry']='P199041',['layout']='P199042',['passivation material']='P199043',['trace material']='P199044',['reference ground configuration']='P199045',['reference electrode']='P199046',['ground electrode']='P199047',['acquisition']='P199048',['acquisition platform']='P199049',['active channels']='P199050',['amplification']='P199051',['gain']='P199052',['filtering']='P199053',['filter type']='P199054',['high pass']='P199055',['low pass']='P199056',['notch frequency']='P199057',['co2']='P199058',['humidity']='P199059',['perfusion']='P199060',['medium composition']='P199061',['o2 concentration']='P199062',['co2 concentration']='P199063',['oxygenation']='P199064',['stimulation']='P199065',['electrical parameters']='P199066',['current amplitude']='P199067',['voltage amplitude']='P199068',['amplitude type']='P199069',['pulse width']='P199070',['pulse shape']='P199071',['optical parameters']='P199072',['irradiance']='P199073',['pharmacological parameters']='P199074',['drug name']='P199075',['treatment type']='P199076',['application method']='P199077',['stimulation protocol']='P199078',['analysis software']='P199079',['event detection']='P199080',['analysis method']='P199081',['output metrics']='P199082',['study name']='P200000',['reconstruction family']='P200001',['source detector distance']='P200002',['detector configuration']='P200003',['projection angles']='P200004',['sparse view']='P200005',['xray spectrum']='P200006',['dose constraints']='P200007',['dose metric']='P200008',['maximum dose']='P200009',['physics model']='P200010',['forward operator']='P200011',['system matrix']='P200012',['polyenergetic model']='P200013',['scatter modeling']='P200014',['beam hardening correction']='P200015',['statistical model']='P200016',['noise model']='P200017',['likelihood']='P200018',['flat field correction']='P200019',['dark field correction']='P200020',['alignment correction']='P200021',['artifact reduction']='P200022',['initialization']='P200023',['initial volume']='P200024',['prior image']='P200025',['seed method']='P200026',['objective function']='P200027',['data fidelity term']='P200028',['regularization term']='P200029',['constraint terms']='P200030',['regularization']='P200031',['hyperparameters']='P200032',['solver']='P200033',['iterations']='P200034',['step size']='P200035',['convergence criterion']='P200036',['stopping tolerance']='P200037',['hardware acceleration']='P200038',['dynamic reconstruction']='P200039',['motion compensation']='P200040',['time resolved']='P200041',['postprocessing']='P200042',['denoising']='P200043',['super resolution']='P200044',['evaluation metrics']='P200045',['rmse']='P200046',['psnr']='P200047',['ssim']='P200048',['cnr']='P200049',['artifact index']='P200050',['reconstruction output']='P200051',['volume dimensions']='P200052',['voxel spacing']='P200053',['reconstructed volume path']='P200054',['uncertainty estimate']='P200055',['cage identity']='P200056',['moc type']='P200057',['metal ions']='P200058',['symbol']='P200059',['oxidation state']='P200060',['ligands']='P200061',['formula']='P200062',['counter ions']='P200063',['stoichiometry']='P200064',['metal to ligand']='P200065',['cage to counter ion']='P200066',['topology']='P200067',['coordination geometry']='P200068',['synthesis procedure']='P200069',['chemical components']='P200070',['metal sources']='P200071',['synthesis details']='P200072',['counter ion sources']='P200073',['other components']='P200074',['process parameters']='P200075',['solvent']='P200076',['initial']='P200077',['final']='P200078',['action']='P200079',['reaction details']='P200080',['metal amount']='P200081',['solvent volume']='P200082',['characterisation']='P200083',['nmr']='P200084',['chemical shifts']='P200085',['integration values']='P200086',['mass spectrometry']='P200087',['m_z values']='P200088',['intensities']='P200089',['pxrd']='P200090',['two theta values']='P200091',['ir']='P200092',['wavenumbers']='P200093',['dosy']='P200094',['diffusion coefficients']='P200095',['temperatures']='P200096',['others']='P200097',['host guest properties']='P200098',['guests']='P200099',['solubility']='P200100',['diffusion rate']='P200101',['binding affinity']='P200102',['thermal stability']='P200103',['chemical stability']='P200104',['conductivity']='P200105',['adsorption capacity']='P200106',['capacity']='P200107',['other properties']='P200108',['cavity size']='P200109',['chiroptical properties']='P200110',['circular dichroism']='P200111',['wavelengths']='P200112',['applications']='P200113',['application type']='P200114',['process metadata']='P200115',['process name']='P200116',['date']='P200117',['feedstock type']='P200118',['reactor type']='P200119',['input parameters']='P200120',['steam to carbon ratio']='P200121',['feedstock feed rate']='P200122',['steam feed rate']='P200123',['carrier gas flow rate']='P200124',['liquid hourly space velocity']='P200125',['weight hourly space velocity']='P200126',['fractal iteration order']='P200127',['tree length ratio']='P200128',['tree diameter ratio']='P200129',['ball milling time']='P200130',['calcination temperature']='P200131',['calcination duration']='P200132',['catalyst properties']='P200133',['active metals']='P200134',['support material']='P200135',['promoters']='P200136',['metal ratio']='P200137',['ni mg ratio']='P200138',['co loading']='P200139',['textural properties']='P200140',['bet surface area']='P200141',['pore volume']='P200142',['average pore diameter']='P200143',['pore size distribution']='P200144',['mesopores 2 10nm']='P200145',['mesopores 10 50nm']='P200146',['surface properties']='P200147',['acid site density']='P200148',['basic site density']='P200149',['oxygen vacancy concentration']='P200150',['surface enrichment']='P200151',['al surface enrichment']='P200152',['cu delta plus fraction']='P200153',['activation energy']='P200154',['catalyst activity']='P200155',['coking mechanism']='P200156',['max operating temperature']='P200157',['deactivation rate']='P200158',['sintering tendency']='P200159',['stability metrics']='P200160',['stability test duration']='P200161',['activity decay rate']='P200162',['coking rate']='P200163',['sintering degree']='P200164',['carbon deposition rate']='P200165',['coke characterization']='P200166',['amorphous coke']='P200167',['filamentous coke']='P200168',['emissions and byproducts']='P200169',['carbon formation rate']='P200170',['carbondioxide emission']='P200171',['co2 capture efficiency']='P200172',['co2 purity']='P200173',['co2 capture technique']='P200174',['liquid byproducts']='P200175',['methanol']='P200176',['acetone']='P200177',['acetic acid residual']='P200178',['feedstock conversion']='P200179',['hydrogen production']='P200180',['h2 purity']='P200181',['thermal efficiency']='P200182',['product selectivity']='P200183',['h2 selectivity']='P200184',['co selectivity']='P200185',['co2 selectivity']='P200186',['ch4 selectivity']='P200187',['acetaldehyde selectivity']='P200188',['ethylene selectivity']='P200189',['methane selectivity']='P200190',['methanol conversion']='P200191',['hydrogen utilization efficiency']='P200192',['activity decay']='P200193',['reactor geometry']='P200194',['reactor diameter']='P200195',['reactor length']='P200196',['heat duty']='P200197',['channel width']='P200198',['channel depth']='P200199',['ball milling medium']='P200200',['performance evaluation criteria']='P200201',['pec']='P200202',['friction coefficient']='P200203',['system properties']='P200204',['heat transfer rate']='P200205',['fractal reactor parameters']='P200206',['successive length ratio']='P200207',['successive diameter ratio']='P200208',['sierpinski carpet']='P200209',['post processing']='P200210',['hydrogen purification method']='P200211',['hydrogen purity increase']='P200212',['absorber']='P200213',['packing height']='P200214',['co2 loading']='P200215',['stripper']='P200216',['reboiler duty']='P200217',['economic metrics']='P200218',['hydrogen production cost']='P200219',['internal rate of return']='P200220',['discounted payback period']='P200221',['net present value']='P200222',['capital expenditure']='P200223',['operating expenditure']='P200224',['controllability']='P200225',['experiment name']='P200226',['experiment description']='P200227',['experiment time']='P200228',['experimenter']='P200229',['cell source']='P200230',['passage number']='P200231',['donor information']='P200232',['harvest location']='P200233',['base medium']='P200234',['ph medium']='P200235',['supplements']='P200236',['supplement name']='P200237',['supplement concentration']='P200238',['supplement type']='P200239',['seeding density value']='P200240',['seeding density unit']='P200241',['cell plating']='P200242',['array support type']='P200243',['adhesion time']='P200244',['adhesion time value']='P200245',['adhesion time unit']='P200246',['additional components']='P200247',['scaffold type']='P200248',['incubator environment']='P200249',['gas phase composition']='P200250',['electrical stimulation']='P200251',['stimulation chamber']='P200252',['stimulation device']='P200253',['electrode material']='P200254',['electrode spacing']='P200255',['electrode configuration']='P200256',['cell location']='P200257',['stimulation parameters']='P200258',['stimulation type']='P200259',['waveform']='P200260',['duty cycle']='P200261',['charge balanced']='P200262',['electrical stimulation duration']='P200263',['total duration value']='P200264',['total duration unit']='P200265',['stimulation cycles']='P200266',['cycles per day']='P200267',['cycle duration']='P200268',['cycle duration value']='P200269',['cycle duration unit']='P200270',['interval between cycles']='P200271',['time between cycles value']='P200272',['time between cycles unit']='P200273',['applied signal strength']='P200274',['applied signal']='P200275',['applied signal value']='P200276',['applied signal unit']='P200277',['resulting current density value']='P200278',['resulting current density unit']='P200279',['field strength']='P200280',['field strength value']='P200281',['field strength unit']='P200282',['determined by']='P200283',['field simulation']='P200284',['simulation method']='P200285',['mesh size']='P200286',['mesh unit']='P200287',['homogeneous field']='P200288',['experimental procedure']='P200289',['experimental analysis']='P200290',['alkaline phosphatase']='P200291',['alkaline phosphatase method']='P200292',['alkaline phosphatase results']='P200293',['alkaline phosphatase time value']='P200294',['alkaline phosphatase time unit']='P200295',['alkaline phosphatase result value ES']='P200296',['alkaline phosphatase result value control']='P200297',['alkaline phosphatase result unit']='P200298',['apoptosis assessment']='P200299',['apoptosis analysis method']='P200300',['apoptosis results']='P200301',['apoptosis analysis time value']='P200302',['apoptosis analysis time unit']='P200303',['apoptosis result ES']='P200304',['apoptosis result control']='P200305',['calcium ion signaling']='P200306',['calcium ion signaling method']='P200307',['calcium ion signaling results']='P200308',['calcium ion signaling time value']='P200309',['calcium ion signaling time unit']='P200310',['calcium ion signaling ES']='P200311',['calcium ion signaling control']='P200312',['calcium deposition']='P200313',['calcium deposition method']='P200314',['calcium deposition results']='P200315',['calcium deposition time value']='P200316',['calcium deposition time unit']='P200317',['calcium deposition result value ES']='P200318',['calcium deposition result value control']='P200319',['calcium deposition result unit']='P200320',['cell cycle analysis']='P200321',['cell cycle results']='P200322',['cell cycle analysis time value']='P200323',['cell cycle analysis time unit']='P200324',['G0_G1']='P200325',['S']='P200326',['G2_M']='P200327',['sub_G1']='P200328',['cytoskeleton orientation']='P200329',['cytoskeleton orientation measurement method']='P200330',['cytoskeleton orientation angle']='P200331',['cytoskeleton orientation percentage']='P200332',['electrical impedance spectroscopy']='P200333',['start frequency']='P200334',['end frequency']='P200335',['hydrogen peroxide']='P200336',['hydrogen peroxide method']='P200337',['hydrogen peroxide measurement results']='P200338',['hydrogen peroxide time value']='P200339',['hydrogen peroxide time unit']='P200340',['hydrogen peroxide concentration ES']='P200341',['hydrogen peroxide concentration control']='P200342',['hydrogen peroxide unit']='P200343',['imaging']='P200344',['imaging device']='P200345',['spatial x']='P200346',['spatial y']='P200347',['spatial z']='P200348',['magnification']='P200349',['primary antibodies']='P200350',['dilution factor']='P200351',['nuclei aspect ratio']='P200352',['nuclei aspect ratio measurement method']='P200353',['nuclei aspect ratio result']='P200354',['pH level']='P200355',['pH level method']='P200356',['pH level measurement results']='P200357',['pH level time value']='P200358',['pH level time unit']='P200359',['pH level value ES']='P200360',['pH level value control']='P200361',['proliferation']='P200362',['cell number results']='P200363',['cell number time value']='P200364',['cell number time unit']='P200365',['cell number ES']='P200366',['cell number control']='P200367',['surface coverage results']='P200368',['surface coverage time value']='P200369',['surface coverage time unit']='P200370',['surface coverage ES']='P200371',['surface coverage control']='P200372',['reactive oxygen species']='P200373',['ROS method']='P200374',['ROS results']='P200375',['ROS measurement time value']='P200376',['ROS measurement time unit']='P200377',['ROS value ES']='P200378',['ROS value control']='P200379',['ROS unit']='P200380',['viability assay']='P200381',['viability']='P200386',['additional quantitative data']='P200387',['assay type']='P200388',['quantitative data value ES']='P200389',['quantitative data value control']='P200390',['quantitative data unit']='P200391',['schema version']='P200392',['experiment mode']='P200393',['started at']='P200394',['ended at']='P200395',['institution']='P200396',['experiment location']='P200397',['replicate group id']='P200398',['instrument software']='P200399',['analysis software version']='P200400',['export source']='P200401',['material description']='P200403',['material state']='P200404',['dimensions mm']='P200405',['diameter mm']='P200406',['thickness mm']='P200407',['strain uniformity']='P200408',['edge treatment']='P200409',['length mm']='P200410',['width mm']='P200411',['interface type']='P200412',['radius curvature mm']='P200413',['conditioning steps']='P200414',['temperature c']='P200415',['duration h']='P200416',['serial number']='P200417',['fixture']='P200418',['primary deformation']='P200419',['temperature control']='P200420',['range c']='P200421',['accuracy c']='P200422',['stabilization time min']='P200423',['angular frequency range rad s']='P200424',['strain resolution percent']='P200425',['segments']='P200426',['segment id']='P200427',['segment started at']='P200428',['segment ended at']='P200429',['strain']='P200430',['amplitude percent']='P200431',['linear viscoelastic verified']='P200432',['strain sweep']='P200433',['max strain percent tested']='P200434',['moduli independent of strain']='P200435',['oscillation']='P200436',['kind']='P200437',['frequency unit']='P200438',['single']='P200439',['angular frequency rad s']='P200440',['sweep']='P200441',['points']='P200442',['point count']='P200443',['points per decade']='P200444',['temperature program']='P200445',['isothermal temperature c']='P200446',['ramp rate c per min']='P200447',['temperature range c']='P200448',['temperature points c']='P200449',['isothermal holds']='P200450',['duration min']='P200451',['contact']='P200452',['gap mm']='P200453',['normal force n']='P200454',['normal force monitored']='P200455',['automatic gap compensation']='P200456',['deformation type']='P200457',['datasets']='P200458',['measurement points']='P200459',['point index']='P200460',['time s']='P200461',['torque nm']='P200462',['phase angle deg']='P200463',['storage modulus pa']='P200464',['loss modulus pa']='P200465',['complex modulus pa']='P200466',['complex viscosity pa s']='P200467',['tan delta']='P200468',['interfacial shear storage modulus mn m']='P200469',['interfacial shear loss modulus mn m']='P200470',['interfacial dilatational storage modulus mn m']='P200471',['interfacial dilatational loss modulus mn m']='P200472',['uncertainty']='P200473',['raw signals']='P200474',['derived summary']='P200475',['reported glass transition c']='P200476',['tan delta peak']='P200477',['frequency hz']='P200478',['crossover frequency rad s']='P200479',['crossover modulus pa']='P200480',['external series uri']='P200481',['time temperature superposition']='P200482',['reference temperature c']='P200483',['shift factor kind']='P200484',['shift factors']='P200485',['master curve points']='P200486',['reduced angular frequency rad s']='P200487',['activation energy kj mol']='P200488',['extended angular frequency rad s']='P200489',['shift model']='P200490',['data quality']='P200491',['time temperature superposition valid']='P200492',['edge slip suspected']='P200493',['cox merz validated']='P200494',['overall quality score']='P200495',['interpretation']='P200496',['summary']='P200497',['notable features']='P200498',['extensions']='P200499',['journal']='P200500',['year']='P200501',['materials']='P200502',['polymer matrix']='P200503',['molecular weight']='P200504',['surface functionalization']='P200505',['key properties']='P200506',['property name']='P200507',['supplier']='P200508',['dispersed phase']='P200509',['specific surface area']='P200510',['crystallite size']='P200511',['solvent system']='P200512',['solvents']='P200513',['boiling point']='P200514',['total amount']='P200515',['pre treatment']='P200516',['solution preparation']='P200517',['dispersion mixing']='P200518',['degassing']='P200519',['casting deposition']='P200520',['solvent removal drying']='P200521',['multi step drying']='P200522',['step']='P200523',['post treatment']='P200524',['multi step processing']='P200525',['ambient conditions']='P200526',['controlled']='P200527',['output characteristics']='P200528',['film uniformity']='P200529',['defects']='P200530',['particle dispersion']='P200531',['film characterization techniques']='P200532',['associated process']='P200533',['inputs']='P200534',['guide RNA']='P200535',['inSilico designer']='P200536',['designer details']='P200537',['modification details']='P200538',['sgRNA structure']='P200539',['full length']='P200540',['truncated variants']='P200541',['variant name']='P200542',['crRNA type']='P200543',['crRNA details']='P200544',['nuclease source']='P200545',['type details']='P200546',['organism details']='P200547',['delivery format']='P200548',['delivery format details']='P200549',['engineered variant']='P200550',['variant details']='P200551',['conformational dynamics']='P200552',['hnh domain state']='P200553',['hnh domain state details']='P200554',['fret constructs']='P200555',['construct name']='P200556',['labeled residues']='P200557',['dyes used']='P200558',['ratio A']='P200559',['allosteric communication']='P200560',['linker mutations']='P200561',['effect on cleavage']='P200562',['trans cleavage activity']='P200563',['target DNA']='P200564',['reference genome details']='P200565',['genomic location']='P200566',['pam sequence']='P200567',['target sequence']='P200568',['strand']='P200569',['predicted off target sites']='P200570',['mismatch positions']='P200571',['mismatch count']='P200572',['pam']='P200573',['off target sites']='P200574',['conformational state']='P200575',['target RNA']='P200576',['pre spacer flanking site']='P200577',['donor template']='P200578',['homology arm length']='P200579',['editing strategy']='P200580',['sox gene target']='P200581',['sox gene target details']='P200582',['base editor type']='P200583',['base editor details']='P200584',['prime editor type']='P200585',['prime editor details']='P200586',['peg RNA']='P200587',['spacer length']='P200588',['template length']='P200589',['pbs length']='P200590',['detection target']='P200591',['detection target details']='P200592',['signal amplification']='P200593',['signal amplification details']='P200594',['biosensing method']='P200595',['biosensing method details']='P200596',['delivery execution']='P200597',['delivery method']='P200598',['method details']='P200599',['protocol type']='P200600',['step number']='P200601',['step name']='P200602',['pulse duration']='P200603',['number of pulses']='P200604',['cell density']='P200605',['incubation time']='P200606',['cell confluency']='P200607',['vector']='P200608',['moi']='P200609',['enhancer']='P200610',['peptide type']='P200611',['nanoparticle type']='P200612',['targeting ligand']='P200613',['reporter probe']='P200614',['molar ratios']='P200615',['cas to GRNA']='P200616',['donor to cas']='P200617',['incubation times']='P200618',['rnp assembly']='P200619',['post transfection']='P200620',['recovery']='P200621',['detection reaction']='P200622',['donor ID']='P200623',['cell line']='P200624',['culture conditions']='P200625',['fret experiments']='P200627',['experiment type']='P200628',['experiment details']='P200629',['buffers used']='P200630',['detection assay']='P200631',['assay details']='P200632',['amplification details']='P200633',['signal detection method']='P200634',['signal detection details']='P200635',['detection time']='P200636',['sample type details']='P200637',['synthesiser']='P200638',['validation system']='P200639',['sequencer']='P200640',['sequencing method']='P200641',['flow cytometer']='P200642',['microscope']='P200643',['thermocycler']='P200644',['fluorescence spectrometer']='P200645',['settings']='P200646',['excitation wavelength']='P200647',['emission range']='P200648',['slit width']='P200649',['integration time']='P200650',['mass spectrometer']='P200651',['electrochemical workstation']='P200652',['editing efficiency']='P200653',['indel profile']='P200654',['insertions']='P200655',['deletions']='P200656',['size distribution']='P200657',['on off target ratio']='P200658',['score type']='P200659',['score value']='P200660',['score details']='P200661',['mismatches']='P200662',['editing frequency']='P200663',['hnh conformational state']='P200664',['genomic stability']='P200665',['translocations']='P200666',['large deletions']='P200667',['chromosome loss']='P200668',['biological fitness report']='P200669',['cell viability']='P200670',['cell proliferation']='P200671',['functional assays']='P200672',['cytokine production']='P200673',['cytotoxicity']='P200674',['activation markers']='P200675',['medical objective']='P200676',['target disease']='P200677',['therapeutic potential']='P200678',['safety concerns']='P200679',['conformational dynamics results']='P200680',['hnh activation threshold']='P200681',['off target cleavage correlation']='P200682',['allosteric control evidence']='P200683',['detection results']='P200684',['target detected']='P200685',['detection signal']='P200686',['sample analysis']='P200687',['safety and security dashboard']='P200688',['off target assessment']='P200689',['hnh conformational analysis']='P200690',['safety and ethics']='P200691',['immunogenicity']='P200692',['assessed']='P200693',['ethical considerations']='P200694',['institutional review board']='P200695',['approval number']='P200696',['informed consent']='P200697',['data privacy']='P200698',['Sensor Type']='P200699',['Median Sampling Rate (Hz)']='P200700',['Min Sampling Rate (Hz)']='P200701',['Max Sampling Rate (Hz)']='P200702',['Proposed Framework']='P200703',['Inspiration / Motivation']='P200704',['Graph Structure Type']='P200705',['Key Components / Architecture']='P200706',['Retrieval Strategy']='P200707',['Indexing Process']='P200708',['Baseline / Compared Methods']='P200709',['Key Results / Performance Gains']='P200710',['Efficiency & Scalability']='P200711',['LLM Integration']='P200712',['System / Tool Name']='P200713',['Core Approach / Method']='P200714',['Extraction Output Format']='P200715',['Relation Types Handled']='P200716',['Training Data Required']='P200717',['Domain Independence']='P200718',['Evaluation Datasets / Benchmarks']='P200719',['Baseline / Comparison Systems']='P200720',['Key Performance Results']='P200721',['Context / Attribution Handling']='P200722',['Knowledge Graph Integration']='P200723',['Limitations / Future Work']='P200724',['absorption length']='P200725',['architecture reference']='P200726',['learning rate']='P200727',['stochastic depth']='P200728',['exponential moving average']='P200729',['training time']='P200730',['memory usage']='P200731',['System Category']='P200732',['System Taxonomy & Mechanics']='P200733',['Retrieval Mechanism']='P200734',['Supported Modality']='P200735',['Reasoning Strategy']='P200736',['system_name']={'P200737','P200751','P200765','P200772','P200779','P200786','P200793'},['system_name_reference']={'P200738','P200752'},['system_category']={'P200739','P200753','P200766','P200773','P200780','P200787','P200794'},['system_category_reference']={'P200740','P200754'},['knowledge_representation']={'P200741','P200755','P200767','P200774','P200781','P200788','P200795'},['knowledge_representation_reference']={'P200742','P200756'},['retrieval_mechanism']={'P200743','P200757','P200768','P200775','P200782','P200789','P200796'},['retrieval_mechanism_reference']={'P200744','P200758'},['knowledge_source']={'P200745','P200759','P200769','P200776','P200783','P200790','P200797'},['knowledge_source_reference']={'P200746','P200760'},['supported_modality']={'P200747','P200761','P200770','P200777','P200784','P200791','P200798'},['supported_modality_reference']={'P200748','P200762'},['reasoning_strategy']={'P200749','P200763','P200771','P200778','P200785','P200792','P200799'},['reasoning_strategy_reference']={'P200750','P200764'},['HAS_VISUALIZATION_DEFINITION']='HAS_VISUALIZATION_DEFINITION',['has entities']='hasEntities',['evaluated property']='P201000',['confirmability validity']='P201001',['predecessor']='P201002',['supertask']='P201003',['alternative task']='P201004',['duree de l\'intervation']='P201005',['objetive']='P201006',['methodologie']='P201007',['has botanical name']='P201008',['has local name']='P201009',['Research problem']='P201010',['Assumptions']='P201015',['Model parameters']='P201016',['Reported performance']='P201017',['Tool or software used']='P201018',['System / Approach Name']='P201019',['Core Methodology']='P201020',['Linguistic Foundation']='P201021',['Relation Types Extracted']='P201022',['Requires Training Data']='P201023',['Comparison Baselines']='P201024',['Scalability / Domain Independence']='P201025',['Downstream Application']='P201026',['Fokus Paper (Zusammenfassung)']='P202000',['geografischer Untersuchungsrahmen']='P202001',['benutztes Modell zur Simulation']='P202002',['Modelltyp (Optimierung, agent, integrated, bottom-up)']='P202003',['sozialer Faktor I']='P202004',['Modelleinbindung des sozialen Faktors (wo wird der soz. Faktor in das Modell integriert (Input…))']='P202005',['Integration soz. Faktor (wie wird der soz. Faktor in das Modell integriert)']='P202006',['Operationalisierung']='P202007',['sozialer Faktor II']='P202008',['Fragen']='P202009',['sozialer Faktor III']='P202010',['sozialer Faktor IV']='P202011',['sozialer Faktor V']='P202012',['sozialer Faktor VI']='P202013',['Ergebnisse Paper -> bei konkreter Modellierung']='P202014',['Supervision']='P202015',['Reinforce Learning']='P202016',['Policy Strategy']='P202017',['Reward Function']='P202018',['Literature Review Task']='P202019',['Level of Automation']='P202020',['Output Produced']='P202021',['Human–AI Collaboration']='P202022',['Human–AI Collaboration role']='P202023',['Reproducibility ']='P202024',['AI approach']='P202025',['Declarative']='P202026',['CPU']='P202027',['GPU']='P202028',['Identifier knowledge']='P202029',['Entity reconciliation']='P202030',['Senors used']='P202031',['Etching Parameters (KPIs)']='P202032',['Target category']='P202033',['Model Inputs']='P202034',['Data Pre Processing']='P202035',['Primary VM model (PM)']='P202036',['Secondary VM model (SM)']='P202037',['Subcategory (ai task)']='P203000',['Approach (ai)']='P203001',['Data modality']='P203002',['Search keyword']='P203003',['Bee demographic']='P203004',['Research demographic']='P203005',['Approach group']='P203006',['Tool / System Name']='P203007',['System Type']='P203008',['Target Users']='P203009',['Technical Architecture']='P203010',['Openness / Interoperability Approach']='P203011',['Data Sources / Input']='P203012',['Key Features / Functionalities']='P203013',['Demonstrated Use Cases']='P203014',['Limitations / Gaps Addressed']='P203015',['start year']='P203016',['coordinator']='P203019',['homepage']='P203018',['research idea']='P203017',['funding period']='P203020',['archival_signature']='P203021',['archival signature']='P203022',['total pags']='P203023',['total pages']='P203024',['folio number']='P203025',['enslaved person']='P203026',['counterpart']='P203027',['initial legal status']='P203028',['final legal status']='P203029',['legal representation']='P203030',['previous owner ']='P203031',['legal action']='P203032',['legal outcome']='P203033',['monetary value']='P203034',['legal conflict ']='P203035',['resource quantity']='P203036',['avalúo money (third part)']='P203037',['groups with quotation']='P203038',['completeness']='P203039',['quotation faithfulness']='P203040',['mean authority']='P203041',['number of chunks']='P203042',[' number of speeches']='P203043',[' number of acts']='P203044',['number of deputies']='P203045',['snapshot date']='P203046',['number of edges']='P203047',['source coverage']='P203048',['source authority']='P203049',['source relevance']='P203050',[' balance perception']='P203051',['overall satisfaction']='P203052',['number of attending experts']='P203053',['number of paired evaluations']='P203054',['preference ratio']='P203055',[' effect size (Cohen\'s d)']='P203056',['evaluated against']='P203057',['evaluation date']='P203058',['Ontology Construction Method']='P203059',['Knowledge Source / Input']='P203060',['Tools & Technologies Used']='P203061',['Validation / Quality Assurance Strategy']='P203062',['Pitfall / Error Types Addressed']='P203063',['Evaluation Metrics & Results']='P203064',['Explainability / Provenance Features']='P203065',['Erosion Assessment Approach']='P203066',['Machine Learning / AI Technique']='P203067',['Erosion Severity Classification Scheme']='P203068',['Wind Turbine / Reference Model']='P203069',['Key Performance Metrics']='P203070',['Energy Yield / AEP Impact']='P203071',['Application Context (Onshore/Offshore)']='P203072',['Scalability / Deployment Potential']='P203073',['Kite / Aircraft Model']='P203074',['Control Strategy']='P203075',['AWES Configuration']='P203076',['Aircraft / Kite Specifications']='P203077',['Trajectory Type']='P203078',['Turbulence / Inflow Conditions']='P203079',['Trajectory Tracking Performance']='P203080',['Wake Characterization']='P203081',['Power Production / Performance']='P203082',['Multi-Kite / Farm Interaction Effects']='P203083',['activated_parameters']='P203084',['attention_mechanism']='P203085',['context_length_max']='P203086',['context_extension_method']='P203087',['training_pipeline']='P203088',['reasoning_mode']='P203089',['moe_configuration']='P203090',['quantization_precision']='P203091',['synthetic_data_generation_method']='P203092',['rl_algorithm']='P203093',['reward_mechanism']='P203094',['tool_calling_format']='P203095',['training_environment_scale']='P203096',['safety_evaluation_protocol']='P203097',['safety_defect_rate']='P203098',['fusion_architecture']='P203099',['vision_encoder']='P203100',['base_model']='P203101',['optimizer_innovation']='P203102',['benchmark_result']='P203103',['weight_clipping_mechanism']='P203104',['number_of_attention_heads']='P203105',['post_training_infrastructure']='P203106',['Qualifiers']='P203107',['Ranks']='P203109',['Conference track']='P203110',['TripleVeracityPrediction']='P203111',['designed by']='P203112',['basic requirement']='P203114',['performance requirement']={'P203115','P203116'},['excitement requirement']='P203117',['preserves']='P203118',['can be achieved by']='P203119',['introduces construct']='P204000',['comprises domain']='P204001',['identifies strategic condition']='P204002',['has evidenced antecedent']='P204003',['produces strategic presence']='P204004',['has focal discrepancy construct']='P204005',['has interpretive mechanism']='P204006',['has established mediator']='P204007',['has focal audience construct']='P204008',['has bounded outcome']='P204009',['proposes theoretical pathway']='P204010',['has ']='P204011',['records']='P204012',['lifecycle']='P204013',['RDM tools life cycle phases']='P204014',['RDM tool']='P204015',['search engines']='searchEngines',['search strings']='searchStrings',['research questions']='researchQuestions',['number of studies originally returned']='numberOfStudiesOriginallyReturned',['number of studies retained']='numberOfStudiesRetained',['uncertainty layer']='P205000',['distribution family']='P205001',['lexical form']='P205002',['vocabulary']='P205003',['divergence measure']='P205004',['decision strategy']='P205005',['graph size']='P205006',['Stage']='P205007',}
return SciKGTeX