SlideShare a Scribd company logo
SEMANTIC	SEARCH	
OVER	THE	WEB
By	ALİ	ERKAN
Introduction
• Semantic	search	is	to	improve	the	accuracy	of	the	search	process	by	
understanding	the	context	and	limiting	the	ambiguity,
• Semantic	search	is	to	make	the	semantics	of	the	Web	content	machine	
understandable.	
• The	semantic	Web	creates	associations	between	different	representations	of	
the	same	real-world	entity.	
• They	allow	data	from	many	different	sources	to	be	interlinked	(linked	open	
data	cloud).	
• Existing	solutions	are	either	search	engines	that	simply	index	the	semantic	
Web	data	or	the	traditional	search	engines	enhanced	with	some	basic	form	of	
synonym	usage,	as	supported	by	Google	and	Bing.	
• The	semantic	Web	is	a	huge	distributed	database	we	can	query	to	get	
information	coming	from	different	sources.
Nature	of	Semantic	Data
Resource	Description	Framework	(RDF)
• All	data	items	in	RDF	are	uniformly	represented	as	triples	of	the	form	
(subject,	predicate,	object) or	(subject,	property,	value)	triples.
• RDF	extends	the	linking	structure	of	the	Web	to	use	URIs	to	name	the	
relationship	between	things	as	well	as	the	two	ends	of	the	link.
• This	linking	structure	forms	a	directed,	labeled	graph.
• The	graph	view	is	the	easiest	possible	mental	model	for	RDF.
Advantages	of	RDF
• RDF	offers	a	standardized	and	flexible	framework	for	publishing	
structured	data	on	the	Web	such	that	
• (1)	data	can	be	linked,	incorporated,	extended,	and	reused	by	other	
RDF	data	across	the	Web;
• (2)	heterogeneous	data	from	independent	sources	can	be	
automatically	integrated	by	software	agents;
• (3)	the	meaning	of	data	can	be	well	defined	using	ontologies
Web	of	Data
• Today,	most	Web	sites	are	generated	from	structured	data	that	is	
stored	in	relational	databases.
• The	main	benefit	of	using	the	ontology	is	that	the	corresponding	data	
are	clean	and	well	structured.	
• A	lot	of	Web	sites	that	embed	structured	data	into	HTML	pages.	
• Google,	Yahoo!,	and	Microsoft	have	jointly	agreed	on	a	set	of	
vocabularies	for	describing	over	200	different	types	of	entities.
• Question:
• “How	can	we	embed	structured	data	into	HTML	pages	and	link	them	each	
other?”
Topology	of	the	Web	of	Data
• Microformats
• Microformats	is	a	technique	for	marking	up	structured	data	about	specific	
types	on	entities.
• RDFa
• W3C	started	in	2004	to	standardize	RDFa as	an	alternative.
• Microdata
• Microdata	is	an	alternative	proposal	for	embedding	structured	data	into	Web	
pages	which	was	initially	presented	as	part	of	the	HTML	5	standardization	
effort	in	2009.
• Linked	Data
• The	term	Linked	Data	refers	to	a	set	of	best	practices	for	publishing	structured	
data	directly	on	the	Web.
Microformats
• Designed	for	humans	first,	machines	second.
• Microformats requires	the	development	of	specialized	parsers	for	each	
format.	
• Microformats	is	used	to	address	specific	use	cases.
• Microformats consist	of	a	definition	of	a	vocabulary	(names	for	classes	and	
properties),	as	well	as	a	set	of	rules	(e.g.,	required	properties,	correct	
nesting	of	elements).	
• HTML/XHTML	attributes	are	used	for	inserting	markup.	
• The	microformats	community	encourages	mixing	microformats	and	reusing	
existing	formats	when	creating	new	ones.
Microformats	Syntax
• Figure	shows	Microformat representation	of	the	example	data	Peter	Smith.	
• The	vcard is	a	root	class	name	indicating	the	presence	of	an	hCard.	
• The	properties	are	url (Peter’s	home	page)	and	fn (full	name).
• The	markup	also	states	that	Peter	knows	Paula	with	the	property	met	acquaintence.
Microformats	Deployment	on	the	Web
• Yahoo!	Search	are	indexing	semantic	markup	including	hCard,	
hCalendar,	hReview,	hAtom,	and	XFN.
• Google	are	parsing	the	hCard,	hReview,	and	hProduct microformats	
and	using	them	to	populate	search	result	pages.
• Facebook	publishes	event	pages	annotated	with	hCalendar,	
• Yelp.com adds	hReview and	hCard to	all	of	their	listings	
• Wikipedia	templates	are	able	to	automatically	generate	microformats	
such	as	geo,	hCard,	and	hCalendar markup.
RDFa	syntax
• RDFa allows	one	to	embed	RDF	triples	within	the	HTML	document	object	model	(DOM).
• The	RDFa	syntax	specifies	how	HTML	elements	may	be	annotated	with	entity	identifiers,	entity	types,	string	
properties,	and	relationship	properties.	
• The	HTML	attribute	@about	indicates	that	the	entity	identified	by	the	URI	reference	
http://example.com/Peter.	
• The	HTML	attribute	@rel specifies	a	relationship	property	between	the	 HTML	element	and	the	target	URL.	
• The	property	foaf:knows to	state	that	Peter	knows	Paula.	
• For	string	properties,	the	attribute	@property	(foaf:name)	to	express	Peter’s	name.
• A	central	idea	of	RDFa	is	the	support	for	multiple,	decentralized,	independent,	extensible	vocabularies,	in	
contrast	to	the	community-driven	centralized	management	of	microformats.
Microdata
• Microdata	is	an	attempt	to	provide	a	simpler	alternative	to	RDFa	and	
Microformats.	
• It	defines	five	new	HTML	attributes	(as	compared	to	zero	for	
Microformats	and	eight	for	RDFa),	
• Provides	a	unified	syntax	(in	contrast	to	Microformats),	
• Allows	for	the	usage	of	any	vocabularies	(similarly	to	RDFa).
• W3C	currently	has	two	draft	specifications	(Microdata	and	RDFa)	with	
the	same	objective.
Microdata	Syntax
• Microdata	consists	of	a	group	of	name–value	pairs.	
• The	groups	are	called	items,	and	each	name–value	pair	is	a	property.	
• In	order	to	mark	up	an	item,	the	itemscope attribute	is	applied	to	an	
HTML	element	.	
• To	add	a	property	to	an	item,	the	itemprop attribute	is	used.
Linked	Data
• The	term	Linked	Data	refers	to	a	set	of	best	practices	for	publishing	
structured	data	directly	on	the	Web.
• Linked	Data	uses	hyperlinks	to	connect	disparate	data	into	a	single	
global	dataspace.
• A	Linked	Data	application	that	has	looked	up	a	URI	and	retrieved	RDF	
data	by	following	links.
• In	a	Linked	Data	context,	if	an	RDF	link	connects	URIs	in	different	
namespaces,	it	ultimately	connects	resources	in	different	datasets.
Linked	Data	Principles	
1. Use	HTTP	URIs	as	names	for	things.
2. When	someone	looks	up	a	URI,	provide	useful	information,	using	
recommended	standards	(RDF,	SPARQL).
3. Include	links	to	other	URIs,	so	that	they	can	discover	more	things.
4. Whenever	a	Linked	Data	client	looks	up	an	HTTP	URI	over	the	HTTP	
protocol,	the	corresponding	Web	server	returns	an	RDF	description	
of	the	identified	object	using	the	RDF/XML	syntax.
Linked	Data(RDF/XML)	Syntax
• FOAF,	a	vocabulary	for	describing	people.	
• URI	http://example.com/Peter	of	type	foaf:Person.	
• foaf:name states	that	this	thing	has	the	name	Peter	Smith.	
• Foaf:knows states	that	Peter	Smith	knows	Paula	Jones,	which	is	identified	by	the	URI	reference	
http://example.com/People/Paula.
Evaluation	Data	For	Search	Engines
• A	number	of	publicly	available	evaluation	datasets	that	have	been	
crawled	from	the	Web	and	can	be	used	for	evaluating	semantic	
search	applications:
• ClueWeb09
• TREC	Entity
• CommonCrawl
• WebDataCommons
• Sindice
• Billion	Triple	Challenge
• SemSearch
• Or	to	obtain	Web	data,	use	publicly	available	software	for	crawling	
the	Web,	such	as	Nutchfor	crawling	Web	pages	and	LDSpider for	
crawling	Linked	Data
Challenges	of	“Web	of	Data”
• Applications	that	want	to	exploit	the	Web	of	Data	are	facing	two	main	
challenges	today:
• Semantic	Heterogeneity.	The	different	techniques	that	are	used	to	
publish	data	on	the	Web	lead	to	a	certain	degree	of	syntax	
heterogeneity
• Data	Quality.	The	Web	is	an	open	medium	and	everybody	can	publish	
data	on	the	Web.	Thus,	the	Web	will	always	contain	data	that	is	
outdated,	conflicting,	or	intentionally	wrong	(spam).
Storing	and	Indexing	Structured	Data
Perspectives	to	storage	and	indexing	of	RDF	
datasets
• The	Relational	Perspective
• An	RDF	graph	is	just	a	particular	type	of	relational	data,	and	that	techniques	
developed	for	storing,	indexing,	and	answering	queries	on	relational	data.
• The	Entity	Perspective
• Resources	in	the	RDF	graph	are	interpreted	as	“objects”	or	“entities”.	Each	
entity	is	determined	by	a	set	of	attribute–value	pairs	in	the	entity	perspective.
• The	Graph-Based	Perspective
• The	focus	is	on	supporting	navigation	in	the	RDF	graph	when	viewed	as	a	
classical	graph	in	which	subjects	and	objects	form	the	nodes,	and	triples	
specify	directed,	labeled	edges.
Storing	and	Indexing	Under	the	Relational	
Perspective
• Two	different	approaches	for	storing	RDF	data	in	relational	databases.
• The	vertical	representation:
• Stores	all	triples	in	an	RDF	graph	as	a	single	table	over	the	relation	schema	
(subject,	predicate,	object).	
• Due	to	the	large	size	of	the	RDF	graphs	and	the	potentially	large	number	of	
self-joins	required	to	answer	queries.
• The	horizontal	representation	approach	interprets	triple	predicate	
values	as	column	names,	and	stores	RDF	graphs	in	one	or	more	wide	
tables.
Horizontal	Representation
• RDF	data	are	conceptually	stored	in	a	single	table	of	the	following	
format:	
• The	table	has	one	column	for	each	predicate	value	that	occurs	in	the	
RDF	graph	and	one	row	for	each	subject	value.	For	each	(s,	p,	o)	
triple,	the	object	o	is	placed	in	the	p	column	of	row	s.
Disadvantages	and	Advantages
• There	is	a	weakness	when	answering	queries	that	do	not	specify	the	
predicate	value.	
• The	relational	schema	must	be	changed	whenever	a	new	predicate	
value	is	added	to	the	RDF	graph.
• On	the	positive	side,	the	horizontal	representation	makes	it	easy	to	
support	typing	of	object	values.
• it	is	easy	to	integrate	existing	relational	data	with	RDF	data.
Storing	and	Indexing	Under	the	Entity	Perspective
• Resources	in	the	RDF	graph	are	interpreted	as	“objects,”	or	
“entities.”	
• Each	entity	is	determined	by	a	set	of	attribute–value	pairs.
• Heavy	use	of	the	inverted	index	data	structure.
• Typically,	the	following	two	general	types	of	queries	are	to	
be	supported
• Simple	keyword	queries:	A	keyword	query	returns	all	entities	that	
contain	an	attribute,	relationship,	and/or	value	relevant	to	a	given	
keyword.	
• Conditional	entity-centric	queries:	A	conditional	entity-centric	
query	returns	all	known	entities	that	satisfy	some	given	conditions	
on	a	combination	of	attribute,	relationships,	and	values	at	the	
same	time
Storing	and	Indexing	Under	the	Graph-Based	Perspective
• The	focus	is	on	supporting	navigation	in	the	RDF	graph	in	which	subjects	
and	objects	form	the	nodes,	and	predicates	specify	directed,	labeled	edges.	
• Typical	query	patterns	are	graph-theoretic	queries	such	as	reachability	
between	nodes.	
• The	major	issue	under	this	perspective	is	how	to	explicitly	and	efficiently	
store	and	index	the	implicit	graph	structure.	
• A	structural	index	is	used	to	obtain	a	reduced	version	of	this	graph	where	
certain	nodes	have	been	merged	while	maintaining	all	edges.
Further	Index	Researches
• A	major	open	issue	is	the	incorporation	of	schema	and	ontology	
reasoning	(e.g.,	RDFS	and	OWL)	in	storage	and	indexing.
• A	little	work	on	the	impact	of	reasoning	on	disk-based	data	
structures.
• Efficient	maintenance	of	storage	and	indexing	structures	as	datasets.
• In	the	entity	perspective,	investigation	of	support	for	richer	query	
languages	and	integration	with	techniques	from	the	other	two	
perspectives.
• Study	of	richer	structural	indexing	techniques	and	related	query	
processing	strategies.
Semantic	Wiki
• Semantic	wikis	are	wikis	that	add	machine-processable annotations	
to	wiki	pages.
• Annotations	exists	for	data	items,	most	frequently	wiki	pages	and	
tags,	but	also	smaller	portions	of	text.
• The	annotations	may	be	freely	chosen	tags,	or	more	formal	
mechanisms	such	as	RDF	backed	by	(imported)	RDFS	or	OWL	
ontologies	are	offered	as	well.	
• The	annotations	may	be	used	for	some	processes:	consistency	
checking,	improved	navigation,	search,	querying,	personalization,	
context-dependent	presentation,	and	reasoning.
Semantic	Wiki	Queries
• Annotations	are	often	represented	in	RDF.	They	are	compatible	with	
SPARQL.
• Semantic	wikis	usually	provide	simple	full-text	search	for	the	querying	
of	textual	content	or	RDF	literals.
• A	standard	RDF	query	language	such	as	SPARQL	or	RDQL	can	often	be	
used	for	querying	the	annotations.
• A	number	of	semantic	wikis	also	come	with	their	own	language	for	
querying	annotations(i.e.,Kiwi-KWQL).
DBpedia
• DBpedia is	extracted structured	content from	Wikipedia.	
• This	structured	information	is	made	available	on	the World	Wide	
Web.
• DBpedia	allows	users	to semantically	query relationships	and	
properties	of	Wikipedia	resources	
• DBpedia	is	including	links	to	other	related datasets.
• It	is	possible	to	ask	complex	queries	to	the	Dbpedia with	SPARQL	
endpoint.
Dbpedia SPARQL
• Suppose	we	were	interested	in	knowing	which	are	the	movies	where	Hugh	
Grant	and	Colin	Firth	starred	together,	we	could	ask	DBpedia	the	following	
SPARQL	query:
SELECT	?movie	WHERE	{
?movie	<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
<http://dbpedia.org/ontology/Film>	.
?movie	<http://dbpedia.org/ontology/starring>
<http://dbpedia.org/resource/Hugh_Grant>		.
?movie	<http://dbpedia.org/ontology/starring>
<http://dbpedia.org/resource/Colin_Firth>
}
Keyword-based	Search	Systems
Keyword-based	search	systems	address	the	following	key	steps:
• Composing	a	valid	semantic	query,	
• for	a	user	it	is	difficult	to	master	a	query	language	(e.g.,	SPARQL)	and	acquire	
sufficient	knowledge	about	the	ontology	or	the	schema	of	the	data	source.	
• Identifying	(substructures	holding)	data	matching	input	keywords,	
• by	using	an	indexing	system	or	a	database	engine.	Indexing		may	be	made	by	
shortest	path	to	root	nodes.
• Linking	identified	data	(substructures)	into	solutions	
• since	data	is	usually	scattered	across	multiple	places,	e.g.,	in	different	tables	
or	XML	elements.
• Ranking	solutions	according	to	a	relevant	criterion	(i.e.,	a	suitable	
scoring	function).	
• Specific	implementation	of	TF/IDF	may	be	used	for	scoring	keyword	elements.
• Only	the	top-k	solutions	with	highest	score,	are	returned	to	the	users	
as	query	answers.
The	interface	of	Interactive	Query	Construction	of	QUICK	
consists	of	three	parts:	
• Quick	creates	Semantic	Queries	
from	keywords:
• A	search	field	(on	the	top),	
• The	construction	pane	showing	
query	construction	options	(on	
the	left),	
• The	query	pane	showing	
semantic	queries	(on	the	right).
Performance	Measurements	of	Search
• Three	measures	have	been	proposed	to	evaluate	performance:
• Exhaustivity measures	the	relevance	of	a	solution	in	terms	of	the	
number	of	keywords	it	contains.	
• Specificity measures	the	precision	of	a	solution	in	terms	of	the	number	
of	keywords	it	contains	with	respect	to	other	irrelevant	terms	occurring	
in	the	solution.
• Overlap measures	the	information	content	of	a	solution	in	terms	of	its	
intersection	with	other	solutions.	
• Clearly,	the	best	ranking	strategy	balances	exhaustivity	and	
specificity	while	reducing	overlap.
Semantic	Web	Search	Engines	
• Hidden	Web/Deep	Web	Approaches	
• RDF-Centric	Search	Engines	
• Distributed	Web	Search	Architectures
Hidden	Web/Deep	Web	Approaches	
• A	vast	amount	of	the	information	available	on	the	Web	is	hidden	
behind	sites	with	heavy	dynamic	content,	usually	backed	by	relational	
databases.	
• Manually	constructed,	site-specific	wrappers	to	extract	structured	
data	from	HTML	pages	or	to	communicate	directly	with	the	
underlying	database	of	such	sites.	
• Automaticall crawler	exists,	however,	this	approach	is	“task	specific”	
and	not	appropriate	for	general	crawling.	
• The	Semantic	Web	may	represent	a	future	direction	for	bringing	Deep	
Web	information	to	the	surface	by	using	RDF	as	a	common	and	
flexible	data	model.
RDF-Centric	Search	Engines	
• Early	prototypes	are	Ontobroker and	SHOE using	the	concepts	of	ontologies	
and	semantics	on	the	Web.
• Swoogle offers	search	over	RDF	documents	by	means	of	an	inverted	keyword	
index	and	a	relational	database.	
• Watson also	provides	keyword	search	facilities	over	Semantic	Web	
documents	but	additionally	provides	search	over	entities.	
• Sindice is	a	registry	and	lookup	service	for	RDF	files	based	on	Lucene	and	a	
MapReduce	framework.	
• Falcons search	engine	offers	entity-centric	searching	for	entities	(and	
concepts)	over	RDF	data.	
• It	has	rank	entities	by	using	a	logarithm	of	the	count	of	documents	in	which	they	are	
mentioned.	
• GoWeb system	demonstrates	the	benefit	of	searching	structured	data	for	the	
biomedical	domain.
Distributed	Web	Search	Architectures	
• Distributed	architectures	have	long	been	common	in	traditional	Web	
search	engines.	
• The	system	architectures	includes	an	incremental	crawler,	ranker	and	
storage	manager,	indexer,	and	query	processor.
• Some	systems	use	a	distributed	inverted	index	
• (based	on	an	embedded	database	system)	over	a	large	corpus	of	Web	pages,	
for	subsequent	analysis	and	query	processing.
Semantic	Search	Web	Engine	(SWSE)	System	
Architecture
SWSE
• SWSE consists	of	crawling,	data	enhancing,	indexing	and	a	user	
interface	for	search,	browsing	and	retrieval	of	information;	operates	
over	RDF	Web	data	(Linked	Data).
• SWSE	allows	users	to	specify	keyword	queries	in	an	input	box	and	
responds	with	a	ranked	list	of	result	snippets.	
• The	results	refer	to	entities	not	documents	(entity	search	over	
instance	data).	
• Users	can	subsequently	navigate	to	related	entities,	as	such,	browsing	
the	Web	of	Data.
SWSE	Preprocessing
• The	crawler	accepts	a	set	of	seed	URIs	and	retrieves	a	large	set	of	RDF	data	
from	the	Web,
• The	consolidation	component	tries	to	find	synonymous	(i.e.,	equivalent)	
identifiers	in	the	data,	and	combines	the	data	according	to	the	
equivalences	found,
• The	ranking	component	performs	links-based	analysis	over	the	crawled	
data	and	derives	scores	indicating	the	importance	of	individual	elements	in	
the	data	(PageRank).
• The	reasoning	component	produces	new	data	which	is	implied	by	the	
inherent	semantics	of	the	input	data,
• The	indexing	component	prepares	an	index	which	supports	the	information	
retrieval	tasks	required	by	the	user	interface	(Inverted	Index).
SWSE	Query	Processing
• With	the	distributed	index	built	and	prepared	on	the	slave	machines,	
the	query	processor	is	able	to	accept	user	queries.
• For	a	top-k	keyword	query,	the	coordinating	machine	requests	k	
result	identifiers	and	ranks	from	each	of	the	slave	machines.	
• The	coordinating	machine	then	computes	the	aggregated	top-k	hits.
• To	provide	the	raw	data	required,	the	master	machine	directly	
requests	data	from	the	respective	slave	machine	(focus	view).
Results	view	for	keyword	query	“bill	Clinton” Focus	view	for	entity	“Bill	Clinton”
SWSE	Search
Watson	(http://watson.kmi.open.ac.uk/WatsonWUI/)
A	Recommender	System	for	Linked	Data
MORE	(MORE	than	Movie	Recommendation)
• The	systems	is	needed	to	recommend	items	based	on	user	
preferences.
• The	systems	should	allow	an	easy	and	friendly	exploration	of	the	
information/data	related	to	a	particular	domain	of	interest.
• New	challenges	with	the	huge	amount	of	interlinked	data	coming	
from	the	semantic	Web.
Semantic	Vector	Space	Model	(MORE)
• In	VSM,	weights	are	assigned	to	index	terms	in	queries	and	in	
documents	(sets	of	terms),	
• Weights	are	used	to	compute	the	degree	of	similarity	between	each	
document	in	the	collection	and	the	query.	
• Whole	RDF	graph	may	be	represented	as	a	three-dimensional	tensor	
where	each	two-dimensional	slice	refers	to	an	ontology	property.	
• Given	a	property,	each	movie	is	seen	as	a	vector,	whose	components	
refer	to	the	TF-IDF	(resource	frequency-inverse	movie	frequency).
• For	a	particular	property,	the	similarity	degree	between	two	movies	is	
represented	by	the	correlation	between	the	two	vectors.
• To	obtain	the	global	correlation	between	two	movies,	a	weighted	sum	
of	each	property	is	calculated.
Tensor	representation	of	the	RDF	graph
Importance	weights	of	the	properties
The	properties	involved	in	the	similarity	detection	process	do	not	have	the	
same	importance.	Each	property	can	have	a	different	importance	for	the	
user	that	can	be	specified	through	a	weight	in	MORE.
Sample	of	RDF	graph	related	to	the	movie	domain
Figure	shows	a	sketch	of	our	RDF	graph	on	movies.	It	contains	2	movies,	3	actors,	2	directors,	3	categories,	1	
genre,	and	5	different	predicates.
Exploratory	Search	Applications	
• They	are	designed	to	satisfy	the	needs	of	users	with	specific	aims.
• They	supports	the	publishing	and	integration	of	data	sources	for	
vertical	domains.
• The	user	will	be	able	to	select	sources	based	on	individual	or	
collective	trust.	
• And	systems	will	be	able	to	route	queries	to	such	sources	and	to	
provide	easy	to-use	interfaces	for	combining	them	within	search	
strategies.
Deployment	Architecture
• The	deployment	of	exploratory	Web	applications	integrating	data	
sources	requires	a	number	of	software	components	and	sophisticated	
interactions	between	them:
• The	processing	modules in	charge	of	invoking	services	that	query	the	data	
sources.
• The	execution	engine	is	a	data	and	control-driven	query	engine	specifically	
designed	to	handle	multidomain	queries.
• The	control	layer	is	the	controller	of	the	architecture;	it	is	designed	to	handle	
several	system	interactions.
• The	repository contains	the	set	of	components	and	data	storages	used	by	the	
system.
Exploratory	Search	Applications	Examples
• Night	Planner
• Weekend	Browser
• Real-Estate	Browser
• Job-House	Combination	Browser
Night	Planner
• A	night	planner	is	a	short-term	Web	application	presenting	several	geolocalized
services,	describing	restaurants,	shows,	movies,	family	events,	music	concerts,	
and	the	like.
• Selected	restaurants	are	ranked	by	distance	from	the	user	and	possibly	by	their	
score
Weekend	Browser
• A	weekend	browser	is	a	short-term	Web	application	presenting	to	
users	the	events	which	are	occurring	in	one	or	more	selected	cities	of	
interest.	
• Once	she/he	is	considering	a	particular	location,	she/he	is	offered	
additional	services	for	completing	the	weekend	plan.
Real-Estate	Browser
• A	real-estate	browser	is	a	long-lived,	
hierarchical	application.	
• It	is	centered	around	a	real-estate.
• A	user	may	select	some	house	offers	and	
evaluate	them	according	to	some	search	
dimensions	(e.g.,	distance	from	work,	
school).	
• The	designer	may	simplify	the	
interaction	by	combining	several	
services	into	one	query	(e.g.,	walkability	
and	vicinity	to	markets	and	parks)
Job-House	Combination	Browser
• A	work-job	browser	is	a	long-lived,	hierarchical	application	where	two	hierarchical	roots,	
one	centered	on	work	offers	and	one	on	house	offers.
• The	application	as	designed	for	applicants	to	PhD	programs,	where	openings	are	linked	
to	doctoral	schools,	then	to	their	professors,	then	to	their	research	programs,	and	an	on-
campus	housing
References
• Semantic	Search	Over	The	Web,	Roberto	De	Virgilio,	Francesco	
Guerra,		Yannis Velegrakis,	Springer,	2012.
• https://rdfa.info/
• http://microformats.org/wiki/Main_Page
• https://schema.org/docs/gs.html
• http://wiki.dbpedia.org/
Ad

More Related Content

What's hot (19)

Keyword query routing
Keyword query routingKeyword query routing
Keyword query routing
Finalyear Projects
 
Web mining
Web miningWeb mining
Web mining
Silicon
 
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routingIEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEEFINALYEARSTUDENTPROJECTS
 
Keyword Query Routing
Keyword Query RoutingKeyword Query Routing
Keyword Query Routing
SWAMI06
 
WEB PAGE RANKING BASED ON TEXT SUBSTANCE OF LINKED PAGES
WEB PAGE RANKING BASED ON TEXT SUBSTANCE OF LINKED PAGESWEB PAGE RANKING BASED ON TEXT SUBSTANCE OF LINKED PAGES
WEB PAGE RANKING BASED ON TEXT SUBSTANCE OF LINKED PAGES
International Journal of Technical Research & Application
 
Linked data and the future of libraries
Linked data and the future of librariesLinked data and the future of libraries
Linked data and the future of libraries
Regan Harper
 
Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Multimedia Data Navigation and the Semantic Web (SemTech 2006)Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Bradley Allen
 
Web crawler
Web crawlerWeb crawler
Web crawler
poonamkenkre
 
Linked Data MLA 2015
Linked Data MLA 2015Linked Data MLA 2015
Linked Data MLA 2015
Cason Snow
 
Linked data MLA 2015
Linked data MLA 2015Linked data MLA 2015
Linked data MLA 2015
Cason Snow
 
Keyword query routing
Keyword query routingKeyword query routing
Keyword query routing
Shakas Technologies
 
PageRank algorithm and its variations: A Survey report
PageRank algorithm and its variations: A Survey reportPageRank algorithm and its variations: A Survey report
PageRank algorithm and its variations: A Survey report
IOSR Journals
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech Legislation
Martin Necasky
 
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
semanticsconference
 
Semantic User Interfaces
Semantic User InterfacesSemantic User Interfaces
Semantic User Interfaces
Ian Dickinson
 
How search engines work
How search engines workHow search engines work
How search engines work
Chinna Botla
 
Web Mining & Text Mining
Web Mining & Text MiningWeb Mining & Text Mining
Web Mining & Text Mining
Hemant Sharma
 
A Semantic Data Model for Web Applications
A Semantic Data Model for Web ApplicationsA Semantic Data Model for Web Applications
A Semantic Data Model for Web Applications
Armin Haller
 
Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?
Museums Computer Group
 
Web mining
Web miningWeb mining
Web mining
Silicon
 
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routingIEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEE 2014 JAVA DATA MINING PROJECTS Keyword query routing
IEEEFINALYEARSTUDENTPROJECTS
 
Keyword Query Routing
Keyword Query RoutingKeyword Query Routing
Keyword Query Routing
SWAMI06
 
Linked data and the future of libraries
Linked data and the future of librariesLinked data and the future of libraries
Linked data and the future of libraries
Regan Harper
 
Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Multimedia Data Navigation and the Semantic Web (SemTech 2006)Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Multimedia Data Navigation and the Semantic Web (SemTech 2006)
Bradley Allen
 
Linked Data MLA 2015
Linked Data MLA 2015Linked Data MLA 2015
Linked Data MLA 2015
Cason Snow
 
Linked data MLA 2015
Linked data MLA 2015Linked data MLA 2015
Linked data MLA 2015
Cason Snow
 
PageRank algorithm and its variations: A Survey report
PageRank algorithm and its variations: A Survey reportPageRank algorithm and its variations: A Survey report
PageRank algorithm and its variations: A Survey report
IOSR Journals
 
Linked Data for Czech Legislation
Linked Data for Czech LegislationLinked Data for Czech Legislation
Linked Data for Czech Legislation
Martin Necasky
 
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
Stephen Buxton | Data Integration - a Multi-Model Approach - Documents and Tr...
semanticsconference
 
Semantic User Interfaces
Semantic User InterfacesSemantic User Interfaces
Semantic User Interfaces
Ian Dickinson
 
How search engines work
How search engines workHow search engines work
How search engines work
Chinna Botla
 
Web Mining & Text Mining
Web Mining & Text MiningWeb Mining & Text Mining
Web Mining & Text Mining
Hemant Sharma
 
A Semantic Data Model for Web Applications
A Semantic Data Model for Web ApplicationsA Semantic Data Model for Web Applications
A Semantic Data Model for Web Applications
Armin Haller
 
Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?
Museums Computer Group
 

Viewers also liked (20)

A Survey of Entity Ranking over RDF Graphs
A Survey of Entity Ranking over RDF GraphsA Survey of Entity Ranking over RDF Graphs
A Survey of Entity Ranking over RDF Graphs
Intelligent Search Systems and Semantic Technologies lab at ITIS KFU
 
Semantic Search tutorial at SemTech 2012
Semantic Search tutorial at SemTech 2012Semantic Search tutorial at SemTech 2012
Semantic Search tutorial at SemTech 2012
Peter Mika
 
Semantic Search for Sourcing and Recruiting
Semantic Search for Sourcing and RecruitingSemantic Search for Sourcing and Recruiting
Semantic Search for Sourcing and Recruiting
Glen Cathey
 
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Glen Cathey
 
Concept based semantic search
Concept based semantic searchConcept based semantic search
Concept based semantic search
Semantic Web Company
 
Semantic Technology: State of the arts and Trends
Semantic Technology: State of the arts and TrendsSemantic Technology: State of the arts and Trends
Semantic Technology: State of the arts and Trends
Won Kwang University
 
Demo: Profiling & Exploration of Linked Open Data
Demo: Profiling & Exploration of Linked Open DataDemo: Profiling & Exploration of Linked Open Data
Demo: Profiling & Exploration of Linked Open Data
Stefan Dietze
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Web
samar_slideshare
 
Social Semantic (Sensor) Web
Social Semantic (Sensor) WebSocial Semantic (Sensor) Web
Social Semantic (Sensor) Web
David Crowley
 
W3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
W3C Semantic Sensor Networks: Ontologies, Applications, and Future DirectionsW3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
W3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
Cory Andrew Henson
 
Knowledge Patterns SSSW2016
Knowledge Patterns SSSW2016Knowledge Patterns SSSW2016
Knowledge Patterns SSSW2016
Aldo Gangemi
 
Semantic web technologies and digital library search
Semantic web technologies and digital library searchSemantic web technologies and digital library search
Semantic web technologies and digital library search
Richard Nurse
 
SemTech 2011 Semantic Search tutorial
SemTech 2011 Semantic Search tutorialSemTech 2011 Semantic Search tutorial
SemTech 2011 Semantic Search tutorial
Peter Mika
 
Kna prestation 3
Kna prestation 3Kna prestation 3
Kna prestation 3
Jimmi Cherian
 
PhD Dissertation Supporting tools for automated generation and visual editing...
PhD Dissertation Supporting tools for automated generation and visual editing...PhD Dissertation Supporting tools for automated generation and visual editing...
PhD Dissertation Supporting tools for automated generation and visual editing...
Álvaro Sicilia
 
Semantic Sensor Networks and Linked Stream Data
Semantic Sensor Networks and Linked Stream DataSemantic Sensor Networks and Linked Stream Data
Semantic Sensor Networks and Linked Stream Data
Oscar Corcho
 
Weakly Supervised Machine Reading
Weakly Supervised Machine ReadingWeakly Supervised Machine Reading
Weakly Supervised Machine Reading
Isabelle Augenstein
 
USFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
USFD at SemEval-2016 - Stance Detection on Twitter with AutoencodersUSFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
USFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
Isabelle Augenstein
 
Lodifier: Generating Linked Data from Unstructured Text
Lodifier: Generating Linked Data from Unstructured TextLodifier: Generating Linked Data from Unstructured Text
Lodifier: Generating Linked Data from Unstructured Text
Isabelle Augenstein
 
Semantic Search tutorial at SemTech 2012
Semantic Search tutorial at SemTech 2012Semantic Search tutorial at SemTech 2012
Semantic Search tutorial at SemTech 2012
Peter Mika
 
Semantic Search for Sourcing and Recruiting
Semantic Search for Sourcing and RecruitingSemantic Search for Sourcing and Recruiting
Semantic Search for Sourcing and Recruiting
Glen Cathey
 
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Talent Sourcing and Matching - Artificial Intelligence and Black Box Semantic...
Glen Cathey
 
Semantic Technology: State of the arts and Trends
Semantic Technology: State of the arts and TrendsSemantic Technology: State of the arts and Trends
Semantic Technology: State of the arts and Trends
Won Kwang University
 
Demo: Profiling & Exploration of Linked Open Data
Demo: Profiling & Exploration of Linked Open DataDemo: Profiling & Exploration of Linked Open Data
Demo: Profiling & Exploration of Linked Open Data
Stefan Dietze
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Web
samar_slideshare
 
Social Semantic (Sensor) Web
Social Semantic (Sensor) WebSocial Semantic (Sensor) Web
Social Semantic (Sensor) Web
David Crowley
 
W3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
W3C Semantic Sensor Networks: Ontologies, Applications, and Future DirectionsW3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
W3C Semantic Sensor Networks: Ontologies, Applications, and Future Directions
Cory Andrew Henson
 
Knowledge Patterns SSSW2016
Knowledge Patterns SSSW2016Knowledge Patterns SSSW2016
Knowledge Patterns SSSW2016
Aldo Gangemi
 
Semantic web technologies and digital library search
Semantic web technologies and digital library searchSemantic web technologies and digital library search
Semantic web technologies and digital library search
Richard Nurse
 
SemTech 2011 Semantic Search tutorial
SemTech 2011 Semantic Search tutorialSemTech 2011 Semantic Search tutorial
SemTech 2011 Semantic Search tutorial
Peter Mika
 
PhD Dissertation Supporting tools for automated generation and visual editing...
PhD Dissertation Supporting tools for automated generation and visual editing...PhD Dissertation Supporting tools for automated generation and visual editing...
PhD Dissertation Supporting tools for automated generation and visual editing...
Álvaro Sicilia
 
Semantic Sensor Networks and Linked Stream Data
Semantic Sensor Networks and Linked Stream DataSemantic Sensor Networks and Linked Stream Data
Semantic Sensor Networks and Linked Stream Data
Oscar Corcho
 
Weakly Supervised Machine Reading
Weakly Supervised Machine ReadingWeakly Supervised Machine Reading
Weakly Supervised Machine Reading
Isabelle Augenstein
 
USFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
USFD at SemEval-2016 - Stance Detection on Twitter with AutoencodersUSFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
USFD at SemEval-2016 - Stance Detection on Twitter with Autoencoders
Isabelle Augenstein
 
Lodifier: Generating Linked Data from Unstructured Text
Lodifier: Generating Linked Data from Unstructured TextLodifier: Generating Linked Data from Unstructured Text
Lodifier: Generating Linked Data from Unstructured Text
Isabelle Augenstein
 
Ad

Similar to Semantic Search Over The Web (20)

unit 1.pptx
unit 1.pptxunit 1.pptx
unit 1.pptx
deepika1108
 
Linked data 20171106
Linked data 20171106Linked data 20171106
Linked data 20171106
Synaptica, LLC
 
Open Conceptual Data Models
Open Conceptual Data ModelsOpen Conceptual Data Models
Open Conceptual Data Models
rumito
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.
Shyjal Raazi
 
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
dannyijwest
 
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the CloudFirst Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
Ontotext
 
Semantic web
Semantic webSemantic web
Semantic web
Abid Fakhre Alam
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
Cason Snow
 
Linked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the FutureLinked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the Future
Emily Nimsakont
 
3 Understanding Search
3 Understanding Search3 Understanding Search
3 Understanding Search
masiclat
 
A review of the state of the art in Machine Learning on the Semantic Web
A review of the state of the art in Machine Learning on the Semantic WebA review of the state of the art in Machine Learning on the Semantic Web
A review of the state of the art in Machine Learning on the Semantic Web
Simon Price
 
How does semantic technology work?
How does semantic technology work? How does semantic technology work?
How does semantic technology work?
Graeme Wood
 
Semantic web
Semantic webSemantic web
Semantic web
Vijay Thorat
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
adameq
 
Semantic web
Semantic webSemantic web
Semantic web
Imtiaz Siddique
 
Intro to the semantic web (for libraries)
Intro to the semantic web (for libraries) Intro to the semantic web (for libraries)
Intro to the semantic web (for libraries)
robin fay
 
Question answering in linked data
Question answering in linked dataQuestion answering in linked data
Question answering in linked data
Reza Ramezani
 
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
IEEEMEMTECHSTUDENTSPROJECTS
 
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
giuseppe_futia
 
A Term Based Ranking Methodology for Resources on the Semantic Web
A Term Based Ranking Methodology for Resources on the Semantic WebA Term Based Ranking Methodology for Resources on the Semantic Web
A Term Based Ranking Methodology for Resources on the Semantic Web
Aaron Huang
 
Open Conceptual Data Models
Open Conceptual Data ModelsOpen Conceptual Data Models
Open Conceptual Data Models
rumito
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.
Shyjal Raazi
 
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
dannyijwest
 
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the CloudFirst Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
Ontotext
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
Cason Snow
 
Linked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the FutureLinked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the Future
Emily Nimsakont
 
3 Understanding Search
3 Understanding Search3 Understanding Search
3 Understanding Search
masiclat
 
A review of the state of the art in Machine Learning on the Semantic Web
A review of the state of the art in Machine Learning on the Semantic WebA review of the state of the art in Machine Learning on the Semantic Web
A review of the state of the art in Machine Learning on the Semantic Web
Simon Price
 
How does semantic technology work?
How does semantic technology work? How does semantic technology work?
How does semantic technology work?
Graeme Wood
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
adameq
 
Intro to the semantic web (for libraries)
Intro to the semantic web (for libraries) Intro to the semantic web (for libraries)
Intro to the semantic web (for libraries)
robin fay
 
Question answering in linked data
Question answering in linked dataQuestion answering in linked data
Question answering in linked data
Reza Ramezani
 
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
2014 IEEE JAVA DATA MINING PROJECT Keyword query routing
IEEEMEMTECHSTUDENTSPROJECTS
 
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
Big Data e tecnologie semantiche - Utilizzare i Linked data come driver d'int...
giuseppe_futia
 
A Term Based Ranking Methodology for Resources on the Semantic Web
A Term Based Ranking Methodology for Resources on the Semantic WebA Term Based Ranking Methodology for Resources on the Semantic Web
A Term Based Ranking Methodology for Resources on the Semantic Web
Aaron Huang
 
Ad

Recently uploaded (20)

Calories_Prediction_using_Linear_Regression.pptx
Calories_Prediction_using_Linear_Regression.pptxCalories_Prediction_using_Linear_Regression.pptx
Calories_Prediction_using_Linear_Regression.pptx
TijiLMAHESHWARI
 
Developing Security Orchestration, Automation, and Response Applications
Developing Security Orchestration, Automation, and Response ApplicationsDeveloping Security Orchestration, Automation, and Response Applications
Developing Security Orchestration, Automation, and Response Applications
VICTOR MAESTRE RAMIREZ
 
DPR_Expert_Recruitment_notice_Revised.pdf
DPR_Expert_Recruitment_notice_Revised.pdfDPR_Expert_Recruitment_notice_Revised.pdf
DPR_Expert_Recruitment_notice_Revised.pdf
inmishra17121973
 
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbbEDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
JessaMaeEvangelista2
 
C++_OOPs_DSA1_Presentation_Template.pptx
C++_OOPs_DSA1_Presentation_Template.pptxC++_OOPs_DSA1_Presentation_Template.pptx
C++_OOPs_DSA1_Presentation_Template.pptx
aquibnoor22079
 
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
gmuir1066
 
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Abodahab
 
GenAI for Quant Analytics: survey-analytics.ai
GenAI for Quant Analytics: survey-analytics.aiGenAI for Quant Analytics: survey-analytics.ai
GenAI for Quant Analytics: survey-analytics.ai
Inspirient
 
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjks
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjksPpt. Nikhil.pptxnshwuudgcudisisshvehsjks
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjks
panchariyasahil
 
04302025_CCC TUG_DataVista: The Design Story
04302025_CCC TUG_DataVista: The Design Story04302025_CCC TUG_DataVista: The Design Story
04302025_CCC TUG_DataVista: The Design Story
ccctableauusergroup
 
Data Analytics Overview and its applications
Data Analytics Overview and its applicationsData Analytics Overview and its applications
Data Analytics Overview and its applications
JanmejayaMishra7
 
LLM finetuning for multiple choice google bert
LLM finetuning for multiple choice google bertLLM finetuning for multiple choice google bert
LLM finetuning for multiple choice google bert
ChadapornK
 
Cleaned_Lecture 6666666_Simulation_I.pdf
Cleaned_Lecture 6666666_Simulation_I.pdfCleaned_Lecture 6666666_Simulation_I.pdf
Cleaned_Lecture 6666666_Simulation_I.pdf
alcinialbob1234
 
Deloitte Analytics - Applying Process Mining in an audit context
Deloitte Analytics - Applying Process Mining in an audit contextDeloitte Analytics - Applying Process Mining in an audit context
Deloitte Analytics - Applying Process Mining in an audit context
Process mining Evangelist
 
chapter 4 Variability statistical research .pptx
chapter 4 Variability statistical research .pptxchapter 4 Variability statistical research .pptx
chapter 4 Variability statistical research .pptx
justinebandajbn
 
Defense Against LLM Scheming 2025_04_28.pptx
Defense Against LLM Scheming 2025_04_28.pptxDefense Against LLM Scheming 2025_04_28.pptx
Defense Against LLM Scheming 2025_04_28.pptx
Greg Makowski
 
Ch3MCT24.pptx measure of central tendency
Ch3MCT24.pptx measure of central tendencyCh3MCT24.pptx measure of central tendency
Ch3MCT24.pptx measure of central tendency
ayeleasefa2
 
Principles of information security Chapter 5.ppt
Principles of information security Chapter 5.pptPrinciples of information security Chapter 5.ppt
Principles of information security Chapter 5.ppt
EstherBaguma
 
Stack_and_Queue_Presentation_Final (1).pptx
Stack_and_Queue_Presentation_Final (1).pptxStack_and_Queue_Presentation_Final (1).pptx
Stack_and_Queue_Presentation_Final (1).pptx
binduraniha86
 
Simple_AI_Explanation_English somplr.pptx
Simple_AI_Explanation_English somplr.pptxSimple_AI_Explanation_English somplr.pptx
Simple_AI_Explanation_English somplr.pptx
ssuser2aa19f
 
Calories_Prediction_using_Linear_Regression.pptx
Calories_Prediction_using_Linear_Regression.pptxCalories_Prediction_using_Linear_Regression.pptx
Calories_Prediction_using_Linear_Regression.pptx
TijiLMAHESHWARI
 
Developing Security Orchestration, Automation, and Response Applications
Developing Security Orchestration, Automation, and Response ApplicationsDeveloping Security Orchestration, Automation, and Response Applications
Developing Security Orchestration, Automation, and Response Applications
VICTOR MAESTRE RAMIREZ
 
DPR_Expert_Recruitment_notice_Revised.pdf
DPR_Expert_Recruitment_notice_Revised.pdfDPR_Expert_Recruitment_notice_Revised.pdf
DPR_Expert_Recruitment_notice_Revised.pdf
inmishra17121973
 
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbbEDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
EDU533 DEMO.pptxccccvbnjjkoo jhgggggbbbb
JessaMaeEvangelista2
 
C++_OOPs_DSA1_Presentation_Template.pptx
C++_OOPs_DSA1_Presentation_Template.pptxC++_OOPs_DSA1_Presentation_Template.pptx
C++_OOPs_DSA1_Presentation_Template.pptx
aquibnoor22079
 
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
Adobe Analytics NOAM Central User Group April 2025 Agent AI: Uncovering the S...
gmuir1066
 
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Day 1 - Lab 1 Reconnaissance Scanning with NMAP, Vulnerability Assessment wit...
Abodahab
 
GenAI for Quant Analytics: survey-analytics.ai
GenAI for Quant Analytics: survey-analytics.aiGenAI for Quant Analytics: survey-analytics.ai
GenAI for Quant Analytics: survey-analytics.ai
Inspirient
 
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjks
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjksPpt. Nikhil.pptxnshwuudgcudisisshvehsjks
Ppt. Nikhil.pptxnshwuudgcudisisshvehsjks
panchariyasahil
 
04302025_CCC TUG_DataVista: The Design Story
04302025_CCC TUG_DataVista: The Design Story04302025_CCC TUG_DataVista: The Design Story
04302025_CCC TUG_DataVista: The Design Story
ccctableauusergroup
 
Data Analytics Overview and its applications
Data Analytics Overview and its applicationsData Analytics Overview and its applications
Data Analytics Overview and its applications
JanmejayaMishra7
 
LLM finetuning for multiple choice google bert
LLM finetuning for multiple choice google bertLLM finetuning for multiple choice google bert
LLM finetuning for multiple choice google bert
ChadapornK
 
Cleaned_Lecture 6666666_Simulation_I.pdf
Cleaned_Lecture 6666666_Simulation_I.pdfCleaned_Lecture 6666666_Simulation_I.pdf
Cleaned_Lecture 6666666_Simulation_I.pdf
alcinialbob1234
 
Deloitte Analytics - Applying Process Mining in an audit context
Deloitte Analytics - Applying Process Mining in an audit contextDeloitte Analytics - Applying Process Mining in an audit context
Deloitte Analytics - Applying Process Mining in an audit context
Process mining Evangelist
 
chapter 4 Variability statistical research .pptx
chapter 4 Variability statistical research .pptxchapter 4 Variability statistical research .pptx
chapter 4 Variability statistical research .pptx
justinebandajbn
 
Defense Against LLM Scheming 2025_04_28.pptx
Defense Against LLM Scheming 2025_04_28.pptxDefense Against LLM Scheming 2025_04_28.pptx
Defense Against LLM Scheming 2025_04_28.pptx
Greg Makowski
 
Ch3MCT24.pptx measure of central tendency
Ch3MCT24.pptx measure of central tendencyCh3MCT24.pptx measure of central tendency
Ch3MCT24.pptx measure of central tendency
ayeleasefa2
 
Principles of information security Chapter 5.ppt
Principles of information security Chapter 5.pptPrinciples of information security Chapter 5.ppt
Principles of information security Chapter 5.ppt
EstherBaguma
 
Stack_and_Queue_Presentation_Final (1).pptx
Stack_and_Queue_Presentation_Final (1).pptxStack_and_Queue_Presentation_Final (1).pptx
Stack_and_Queue_Presentation_Final (1).pptx
binduraniha86
 
Simple_AI_Explanation_English somplr.pptx
Simple_AI_Explanation_English somplr.pptxSimple_AI_Explanation_English somplr.pptx
Simple_AI_Explanation_English somplr.pptx
ssuser2aa19f
 

Semantic Search Over The Web