SlideShare ist ein Scribd-Unternehmen logo
1 von 29
Downloaden Sie, um offline zu lesen
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Pieter Pauwels
pipauwel.pauwels@ugent.be
Ana Roxin
ana-maria.roxin@u-bourgogne.fr
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Agenda
Scenario
EYE/N3
approach
STARDOG
approach
Results
Further
generalisation
2
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
SCENARIO
3
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Input files
◼ 2 IFC files converted into ifcOWL (Turtle format)
facts1.ttl
facts2.ttl
◼ Additional statements
@prefix add: <http://www.additionalelements.org/> .
inst:IfcSpace_1021 add:isConnectedToStair inst:IfcStair_593 .
inst:IfcSpace_983 add:isConnectedToStair inst:IfcStair_593 .
inst:IfcSpace_1021 add:isConnectedToStair inst:IfcStair_613 .
inst:IfcSpace_983 add:isConnectedToStair inst:IfcStair_613 .
◼ An ensemble of 8 rules (IF -> THEN)
4
But, this can
also be
handled
through the
proper
elements in
IFC
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Example Rule – R#7
• A stair is connected to an object having an exit to ground floor
• The distance from the stair to the exit is not greater than 30000IF
• The stair is a valid exitTHEN
5
PREFIX kba: <http://koreanbuildingcode.org/KR-BA-34-01/>
PREFIX math: <http://www.w3.org/2000/10/swap/math#>
PREFIX add: <http://www.additionalelements.org/>
IF {
?s add:isConnectedToStair ?obj .
?obj kba:hasExitOnGroundFloor "true" .
?s kba:hasEscapeDistanceToStaircase ?value .
?value math:notGreaterThan 30000 .
}
THEN {
?s kba:isValid "true" .
}
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
THE EYE/N3 APPROACH
6
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
The N3/EYE Approach
7
inference engine
OWL ontologies
query
User
RDF Repository
interface
IF-THEN rule repository
response in
RDF graph
EYE reasoning
engine
N3 OWLRDF
SPARQL
RDF / CSV
English
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Rules in EYE/N3
8
RDF graph
Log:implies
(IF THEN)
N3Logic
@prefix kba: <http://koreanbuildingcode.org/KR-BA-34-01/> .
@prefix add: <http://www.additionalelements.org/> .
@prefix math: <http://www.w3.org/2000/10/swap/math#> .
{
?s add:isConnectedToStair ?obj .
?obj kba:hasExitOnGroundFloor "true" .
?s kba:hasEscapeDistanceToStaircase ?value .
?value math:notGreaterThan 30000 .
}
=>
{
?s kba:isValid "true" .
} .
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Serialisation formats for the RDF data model
9
Source: https://www.w3.org/DesignIssues/diagrams/n3/venn
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
THE STARDOG APPROACH
10
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Stardog
11
Source: http://stardog.com/
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Scenario implementation on Stardog
Adapting
rules
• Stardog Rule
Syntax
Creating the
repositories
• 1 per IFC file
• Rules are added
on top of each
repository
Querying
the data
• Inferences
are made
on query
execution
12
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Stardog Rule Syntax
13
SPARQL
"basic graph
patterns"
(BGPs)
explicit new
bits (IF-
THEN)
Stardog Rule
Syntax
PREFIX rule: <tag:stardog:api:rule:>
[] a rule:SPARQLRule ;
rule:content """
PREFIX kba: <http://koreanbuildingcode.org/KR-BA-34-01/>
PREFIX add: <http://www.additionalelements.org/>
IF {
?s add:isConnectedToStair ?obj .
?obj kba:hasExitOnGroundFloor "true" .
?s kba:hasEscapeDistanceToStaircase ?value .
FILTER (?value <= 30000) .
}
THEN {
?s kba:isValid "true" .
}""" .
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Scenario
◼ 2 repositories
Facts1.ttl + rs1.ttl
Facts2.ttl + rs1.ttl
◼ SPARQL queries addressing the properties being
impacted by the rules in the rule set (rs1.ttl)
As Stardog performs reasoning at query time
◼ Web interface for
Uploading files
Addressing SPARQL queries
14
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
RESULTS
15
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – validating R#1
◼ Query 1
◼ Output Facts1.ttl
◼ Output Facts2.ttl
16
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – Validating R#2
◼ Query 2
◼ Output (same for Facts1.ttl & Facts2.ttl)
17
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – Validating R#3
◼ Query 3
◼ Output Facts1.ttl
◼ Output Facts2.ttl
18
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – Validating R#4
◼ Query 4
◼ Output Facts1.ttl
◼ Output Facts2.ttl
19
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – Validating R#5
◼ Query 5
◼ Output (same for Facts1.ttl & Facts2.ttl)
20
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Inferences – Validating R#6
◼ Query 6
◼ Output Facts1.ttl
◼ Output Facts2.ttl
21
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
R#7 and R#8 – Facts1.ttl
◼
◼
◼
22
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
R#7 and R#8 – Facts2.ttl
◼
◼
23
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
FURTHER GENERALISATION
24
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Candidate languages
RASE
Ifc Constraint
Model
Procedural
Coding
SWRL
SPARQL and
SPIN
DROOLS
Legal Doc ML
and Legal Rule
ML
BIMRL
Rule Tables JenaRules
NLP and
Prolog
Commercial
Rule Engines
(e.g. Stardog)
BERA N3logic
25
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Structure ????
26
SWRL
N3Logic
StarDog
Prolog
SPARQL/SPIN
BERA
RASE
IfcConstraint
Procedural
coding
DROOLS
RuleML
BIMRL
Rule
Tables
Jena
Rules
RIF
Natural Language
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Language ‘families’
27
SWRLN3Logic StarDog
Prolog SPARQL/SPIN
BERA
RASE
IfcConstraint
Procedural
coding
DROOLS
LegalRuleML
BIMRL
Rule
Tables
Jena RIF
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Cascading the families
28
SWRLN3Logic StarDog
Prolog SPARQL/SPIN
BERA
RASE IfcConstraint
Procedural
coding
DROOLS
LegalRuleML
BIMRL
Jena RIF
Natural Language
IMPLEMENTATION
MARKUP
STANDARD
PieterPAUWELS–pipauwels@ugent.be
AnaROXIN–ana-maria.roxin@u-bourgogne.fr
Pieter Pauwels
pipauwel.pauwels@ugent.be
Ana Roxin
ana-maria.roxin@u-bourgogne.fr
Thank you for your attention !

Weitere ähnliche Inhalte

Andere mochten auch

Electrical panel builders in rajasthan www.srelectricals.co.in
Electrical panel builders in rajasthan www.srelectricals.co.inElectrical panel builders in rajasthan www.srelectricals.co.in
Electrical panel builders in rajasthan www.srelectricals.co.injkprs
 
Tues palace of versailles
Tues palace of versaillesTues palace of versailles
Tues palace of versaillesTravis Klein
 
A to z_to_achieve_your_dreams_1
A to z_to_achieve_your_dreams_1A to z_to_achieve_your_dreams_1
A to z_to_achieve_your_dreams_1Chandan Dubey
 
RSA Monthly Online Fraud Report - June 2013
RSA Monthly Online Fraud Report - June 2013RSA Monthly Online Fraud Report - June 2013
RSA Monthly Online Fraud Report - June 2013EMC
 
Ամանորն իմ ընտանիքում
Ամանորն իմ ընտանիքումԱմանորն իմ ընտանիքում
Ամանորն իմ ընտանիքումtatevabrahamyan
 
Math Orientation Summer 2015
Math Orientation Summer 2015Math Orientation Summer 2015
Math Orientation Summer 2015Dan Etz
 
Intelligence-Driven GRC for Security
Intelligence-Driven GRC for SecurityIntelligence-Driven GRC for Security
Intelligence-Driven GRC for SecurityEMC
 
Black plague wed thur
Black plague wed thurBlack plague wed thur
Black plague wed thurTravis Klein
 
25 beautiful short phrases
25 beautiful short phrases25 beautiful short phrases
25 beautiful short phrasesChandan Dubey
 
รวมไอเดียแบบบ้านชั้นเดียว
รวมไอเดียแบบบ้านชั้นเดียวรวมไอเดียแบบบ้านชั้นเดียว
รวมไอเดียแบบบ้านชั้นเดียวKamthon Sarawan
 
The Evolution of IP Storage and Its Impact on the Network
The Evolution of IP Storage and Its Impact on the NetworkThe Evolution of IP Storage and Its Impact on the Network
The Evolution of IP Storage and Its Impact on the NetworkEMC
 
Linux kursu-pendik
Linux kursu-pendikLinux kursu-pendik
Linux kursu-pendiksersld67
 

Andere mochten auch (20)

Electrical panel builders in rajasthan www.srelectricals.co.in
Electrical panel builders in rajasthan www.srelectricals.co.inElectrical panel builders in rajasthan www.srelectricals.co.in
Electrical panel builders in rajasthan www.srelectricals.co.in
 
Tues palace of versailles
Tues palace of versaillesTues palace of versailles
Tues palace of versailles
 
A to z_to_achieve_your_dreams_1
A to z_to_achieve_your_dreams_1A to z_to_achieve_your_dreams_1
A to z_to_achieve_your_dreams_1
 
Beetle 20 operating_manual_english
Beetle 20 operating_manual_englishBeetle 20 operating_manual_english
Beetle 20 operating_manual_english
 
RSA Monthly Online Fraud Report - June 2013
RSA Monthly Online Fraud Report - June 2013RSA Monthly Online Fraud Report - June 2013
RSA Monthly Online Fraud Report - June 2013
 
Ամանորն իմ ընտանիքում
Ամանորն իմ ընտանիքումԱմանորն իմ ընտանիքում
Ամանորն իմ ընտանիքում
 
4squares
4squares4squares
4squares
 
Math Orientation Summer 2015
Math Orientation Summer 2015Math Orientation Summer 2015
Math Orientation Summer 2015
 
Cost curves
Cost curvesCost curves
Cost curves
 
Intelligence-Driven GRC for Security
Intelligence-Driven GRC for SecurityIntelligence-Driven GRC for Security
Intelligence-Driven GRC for Security
 
Black plague wed thur
Black plague wed thurBlack plague wed thur
Black plague wed thur
 
25 beautiful short phrases
25 beautiful short phrases25 beautiful short phrases
25 beautiful short phrases
 
Be proud on_india
Be proud on_indiaBe proud on_india
Be proud on_india
 
รวมไอเดียแบบบ้านชั้นเดียว
รวมไอเดียแบบบ้านชั้นเดียวรวมไอเดียแบบบ้านชั้นเดียว
รวมไอเดียแบบบ้านชั้นเดียว
 
The Evolution of IP Storage and Its Impact on the Network
The Evolution of IP Storage and Its Impact on the NetworkThe Evolution of IP Storage and Its Impact on the Network
The Evolution of IP Storage and Its Impact on the Network
 
Jn wp wpd2012
Jn wp wpd2012Jn wp wpd2012
Jn wp wpd2012
 
Codigo
CodigoCodigo
Codigo
 
սուրբ գեվորգ
սուրբ գեվորգսուրբ գեվորգ
սուրբ գեվորգ
 
Linux kursu-pendik
Linux kursu-pendikLinux kursu-pendik
Linux kursu-pendik
 
Numbers
NumbersNumbers
Numbers
 

Mehr von Ana Roxin

Apporter du sens aux données BIM
Apporter du sens aux données BIMApporter du sens aux données BIM
Apporter du sens aux données BIMAna Roxin
 
Bringing Meaning to BIM Data
Bringing Meaning to BIM DataBringing Meaning to BIM Data
Bringing Meaning to BIM DataAna Roxin
 
Linked Data Vocabularies for BIM
Linked Data Vocabularies for BIMLinked Data Vocabularies for BIM
Linked Data Vocabularies for BIMAna Roxin
 
[Cib]achieving interoperability between bim and gis final
[Cib]achieving interoperability between bim and gis final[Cib]achieving interoperability between bim and gis final
[Cib]achieving interoperability between bim and gis finalAna Roxin
 
Habilitation to conduct research (Habilitation à diriger des recherches)
Habilitation to conduct research (Habilitation à diriger des recherches)Habilitation to conduct research (Habilitation à diriger des recherches)
Habilitation to conduct research (Habilitation à diriger des recherches)Ana Roxin
 
Les données liées pour le BIM
Les données liées pour le BIMLes données liées pour le BIM
Les données liées pour le BIMAna Roxin
 
Linked Data applications for BIM
Linked Data applications for BIMLinked Data applications for BIM
Linked Data applications for BIMAna Roxin
 
On the relation between Model View Definitions (MVDs) and Linked Data technol...
On the relation between Model View Definitions (MVDs) and Linked Data technol...On the relation between Model View Definitions (MVDs) and Linked Data technol...
On the relation between Model View Definitions (MVDs) and Linked Data technol...Ana Roxin
 
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...Brief State of the Art - Semantic Web technologies for geospatial data - Mode...
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...Ana Roxin
 
Geographic information - standards available for describing geographical data
Geographic information - standards available for describing geographical dataGeographic information - standards available for describing geographical data
Geographic information - standards available for describing geographical dataAna Roxin
 
Semantic Web applications for mobility and social interaction
Semantic Web applications for mobility and social interactionSemantic Web applications for mobility and social interaction
Semantic Web applications for mobility and social interactionAna Roxin
 
Customizing Semantic Profiling for Digital Advertising
Customizing Semantic Profiling for Digital AdvertisingCustomizing Semantic Profiling for Digital Advertising
Customizing Semantic Profiling for Digital AdvertisingAna Roxin
 
An Agile Process Modelling Approach for BIM Projects
An Agile Process Modelling Approach for BIM ProjectsAn Agile Process Modelling Approach for BIM Projects
An Agile Process Modelling Approach for BIM ProjectsAna Roxin
 
A Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsA Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsAna Roxin
 
Federated Approach for Interoperating AEC/FM Ontologies
Federated Approach for Interoperating AEC/FM OntologiesFederated Approach for Interoperating AEC/FM Ontologies
Federated Approach for Interoperating AEC/FM OntologiesAna Roxin
 
Querying and reasoning over large scale building datasets: an outline of a pe...
Querying and reasoning over large scale building datasets: an outline of a pe...Querying and reasoning over large scale building datasets: an outline of a pe...
Querying and reasoning over large scale building datasets: an outline of a pe...Ana Roxin
 
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...Ana Roxin
 
A Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsA Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsAna Roxin
 
COBieOWL An OWL ontology based on COBie standard
COBieOWL An OWL ontology based on COBie standardCOBieOWL An OWL ontology based on COBie standard
COBieOWL An OWL ontology based on COBie standardAna Roxin
 

Mehr von Ana Roxin (19)

Apporter du sens aux données BIM
Apporter du sens aux données BIMApporter du sens aux données BIM
Apporter du sens aux données BIM
 
Bringing Meaning to BIM Data
Bringing Meaning to BIM DataBringing Meaning to BIM Data
Bringing Meaning to BIM Data
 
Linked Data Vocabularies for BIM
Linked Data Vocabularies for BIMLinked Data Vocabularies for BIM
Linked Data Vocabularies for BIM
 
[Cib]achieving interoperability between bim and gis final
[Cib]achieving interoperability between bim and gis final[Cib]achieving interoperability between bim and gis final
[Cib]achieving interoperability between bim and gis final
 
Habilitation to conduct research (Habilitation à diriger des recherches)
Habilitation to conduct research (Habilitation à diriger des recherches)Habilitation to conduct research (Habilitation à diriger des recherches)
Habilitation to conduct research (Habilitation à diriger des recherches)
 
Les données liées pour le BIM
Les données liées pour le BIMLes données liées pour le BIM
Les données liées pour le BIM
 
Linked Data applications for BIM
Linked Data applications for BIMLinked Data applications for BIM
Linked Data applications for BIM
 
On the relation between Model View Definitions (MVDs) and Linked Data technol...
On the relation between Model View Definitions (MVDs) and Linked Data technol...On the relation between Model View Definitions (MVDs) and Linked Data technol...
On the relation between Model View Definitions (MVDs) and Linked Data technol...
 
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...Brief State of the Art - Semantic Web technologies for geospatial data - Mode...
Brief State of the Art - Semantic Web technologies for geospatial data - Mode...
 
Geographic information - standards available for describing geographical data
Geographic information - standards available for describing geographical dataGeographic information - standards available for describing geographical data
Geographic information - standards available for describing geographical data
 
Semantic Web applications for mobility and social interaction
Semantic Web applications for mobility and social interactionSemantic Web applications for mobility and social interaction
Semantic Web applications for mobility and social interaction
 
Customizing Semantic Profiling for Digital Advertising
Customizing Semantic Profiling for Digital AdvertisingCustomizing Semantic Profiling for Digital Advertising
Customizing Semantic Profiling for Digital Advertising
 
An Agile Process Modelling Approach for BIM Projects
An Agile Process Modelling Approach for BIM ProjectsAn Agile Process Modelling Approach for BIM Projects
An Agile Process Modelling Approach for BIM Projects
 
A Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsA Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building Views
 
Federated Approach for Interoperating AEC/FM Ontologies
Federated Approach for Interoperating AEC/FM OntologiesFederated Approach for Interoperating AEC/FM Ontologies
Federated Approach for Interoperating AEC/FM Ontologies
 
Querying and reasoning over large scale building datasets: an outline of a pe...
Querying and reasoning over large scale building datasets: an outline of a pe...Querying and reasoning over large scale building datasets: an outline of a pe...
Querying and reasoning over large scale building datasets: an outline of a pe...
 
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...
ifcWOD (Web Of Data) - Semantically Adapting IFC Model Relations into OWL Pro...
 
A Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building ViewsA Semantic Web Approach for defining Building Views
A Semantic Web Approach for defining Building Views
 
COBieOWL An OWL ontology based on COBie standard
COBieOWL An OWL ontology based on COBie standardCOBieOWL An OWL ontology based on COBie standard
COBieOWL An OWL ontology based on COBie standard
 

Kürzlich hochgeladen

Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyCall Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyPooja Nehwal
 
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Mathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMoumonDas2
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝soniya singh
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfhenrik385807
 
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesVVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesPooja Nehwal
 
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...NETWAYS
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AITatiana Gurgel
 
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrSaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrsaastr
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024eCommerce Institute
 
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024eCommerce Institute
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubssamaasim06
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Pooja Nehwal
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Vipesco
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...henrik385807
 
Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Chameera Dedduwage
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Kayode Fayemi
 
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxMohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxmohammadalnahdi22
 
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Hasting Chen
 

Kürzlich hochgeladen (20)

Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyCall Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
 
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Mathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptx
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
 
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesVVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
 
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AI
 
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrSaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024
 
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubs
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
 
Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
 
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxMohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
 
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
 

Comparing Rule Representation and Reasoning Approaches for Building Information Modeling