Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pip install knowledgecomplex
Or from source:

```bash
git clone https://github.com/BlockScience/knowledgecomplex.git
git clone https://github.com/DynamicalSystemsGroup/knowledgecomplex.git
cd knowledgecomplex
pip install -e ".[dev]"
```
Expand Down Expand Up @@ -219,7 +219,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for the full design rationale.

## Domain model example

This package is used by [mtg-kc](https://github.com/BlockScience/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/BlockScience/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance.
This package is used by [mtg-kc](https://github.com/mzargham/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/DynamicalSystemsGroup/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance.

## License

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pip install knowledgecomplex
Or from source:

```bash
git clone https://github.com/BlockScience/knowledgecomplex.git
git clone https://github.com/DynamicalSystemsGroup/knowledgecomplex.git
cd knowledgecomplex
pip install -e ".[dev]"
```
Expand Down Expand Up @@ -57,14 +57,14 @@ fig, ax = plot_hasse(kc)
fig, ax = plot_geometric(kc)
```

For building schemas from scratch, see [`examples/02_construction/`](https://github.com/blockscience/knowledgecomplex/tree/main/examples/02_construction). Three pre-built ontologies ship with the package:
For building schemas from scratch, see [`examples/02_construction/`](https://github.com/DynamicalSystemsGroup/knowledgecomplex/tree/main/examples/02_construction). Three pre-built ontologies ship with the package:

```python
from knowledgecomplex.ontologies import operations, brand, research
sb = brand.schema() # audience/theme with resonance, interplay, overlap
```

See the [examples/](https://github.com/blockscience/knowledgecomplex/tree/main/examples) directory for 11 runnable examples.
See the [examples/](https://github.com/DynamicalSystemsGroup/knowledgecomplex/tree/main/examples) directory for 11 runnable examples.

## API Reference

Expand Down
4 changes: 2 additions & 2 deletions docs/ontology.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ These constraints use `sh:sparql` validators because they require cross-individu

## Interoperability

Because KC stores all data as standard RDF and enforces constraints via W3C SHACL, instance graphs are natively compatible with RDF-based model management systems such as [Flexo MMS](https://github.com/Open-MBEE/flexo-mms-deployment) from the [OpenMBEE](https://www.openmbee.org/) community. JSON-LD export (`dump_graph(format="json-ld")`) provides the primary bridge format. See the [Interoperability section of ARCHITECTURE.md](https://github.com/blockscience/knowledgecomplex/blob/main/ARCHITECTURE.md#interoperability-flexo-mms-and-openmbee) for integration patterns.
Because KC stores all data as standard RDF and enforces constraints via W3C SHACL, instance graphs are natively compatible with RDF-based model management systems such as [Flexo MMS](https://github.com/Open-MBEE/flexo-mms-deployment) from the [OpenMBEE](https://www.openmbee.org/) community. JSON-LD export (`dump_graph(format="json-ld")`) provides the primary bridge format. See the [Interoperability section of ARCHITECTURE.md](https://github.com/DynamicalSystemsGroup/knowledgecomplex/blob/main/ARCHITECTURE.md#interoperability-flexo-mms-and-openmbee) for integration patterns.

## Design rationale

See [ARCHITECTURE.md](https://github.com/blockscience/knowledgecomplex/blob/main/ARCHITECTURE.md) for the full 2x2 responsibility map and design decisions.
See [ARCHITECTURE.md](https://github.com/DynamicalSystemsGroup/knowledgecomplex/blob/main/ARCHITECTURE.md) for the full 2x2 responsibility map and design decisions.
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
site_name: knowledgecomplex
site_url: https://blockscience.github.io/knowledgecomplex
repo_url: https://github.com/blockscience/knowledgecomplex
repo_name: blockscience/knowledgecomplex
site_url: https://dynamicalsystemsgroup.github.io/knowledgecomplex
repo_url: https://github.com/DynamicalSystemsGroup/knowledgecomplex
repo_name: DynamicalSystemsGroup/knowledgecomplex

theme:
name: material
Expand Down
Loading