-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from bio-ontology-research-group/cate
CatE Implementation (#59) and Docs update.
- Loading branch information
Showing
82 changed files
with
2,384 additions
and
639 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Report a bug | ||
description: Describe any wrong or unexpected behavior of mOWL | ||
labels: [ "bug" ] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: Please provide a clear and concise description of the unexpected or erroneous behavior in mOWL that you experienced and what you expected to happen instead. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: How to reproduce | ||
description: Please provide a example of the code that you ran to encounter the bug. This is a crucial aspect in order to find the source of error. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: Please, describe the OS, the Python version, mOWL version and JDK version where you ran the code. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: extras | ||
attributes: | ||
label: Additional information | ||
description: Add any other information about the problem here. | ||
validations: | ||
required: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Add a new model | ||
description: Suggest a new model for mOWL | ||
labels: [ "model" ] | ||
body: | ||
- type: dropdown | ||
id: models | ||
attributes: | ||
label: mOWL support different types of models. Select which type fits better for your suggestion. | ||
multiple: false | ||
options: | ||
- Ontology graph projection | ||
- Random walker | ||
- Syntactic model | ||
- Model-theoretic model | ||
- Other | ||
- type: input | ||
id: arxiv | ||
attributes: | ||
label: Publication Link | ||
description: Link to the academic text of record where the model was first proposed (e.g., from _arXiv_) | ||
placeholder: e.g., https://arxiv.org/abs/1902.10499 | ||
validations: | ||
required: true | ||
- type: input | ||
id: reference_implementation | ||
attributes: | ||
label: Reference Implementation | ||
description: Link to the publicly available reference implementation, preferrably from the authors of the publication | ||
placeholder: e.g., https://github.com/bio-ontology-research-group/el-embeddings | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional_implementations | ||
attributes: | ||
label: Additional Implementations | ||
description: Links to any additional publicly available implementations | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Information | ||
description: Additional information related to this model. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,6 @@ dist/ | |
.coverage | ||
*.pickle | ||
*.zip | ||
*.log | ||
*.log | ||
|
||
docs/source/api/mowl.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,9 @@ | ||
mowl.base_models | ||
===================== | ||
|
||
* :doc:`base` | ||
* :doc:`base_graph` | ||
* :doc:`base_syntactic` | ||
* :doc:`base_el` | ||
|
||
.. automodapi:: mowl.base_models | ||
:no-heading: | ||
:headings: -- | ||
|
||
.. toctree:: | ||
:maxdepth: 0 | ||
:hidden: | ||
:glob: | ||
|
||
base | ||
base_graph | ||
base_syntactic | ||
base_el | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
mowl.datasets | ||
===================== | ||
|
||
Base dataset | ||
------------------------- | ||
Dataset constructors | ||
---------------------- | ||
|
||
.. automodule:: mowl.datasets.base | ||
:members: | ||
:show-inheritance: | ||
.. automodapi:: mowl.datasets | ||
:no-heading: | ||
:headings: -- | ||
|
||
| | ||
| | ||
Built-in datasets | ||
------------------- | ||
.. automodule:: mowl.datasets.builtin | ||
:members: | ||
:show-inheritance: | ||
|
||
Dataset for :math:`\mathcal{EL}` language | ||
------------------------------------------ | ||
.. automodule:: mowl.datasets.el | ||
:members: | ||
:show-inheritance: | ||
.. automodapi:: mowl.datasets.builtin | ||
:no-heading: | ||
:headings: -- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
mowl.evaluation | ||
============================ | ||
|
||
.. automodule:: mowl.evaluation.base | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
|
||
.. automodule:: mowl.evaluation.rank_based | ||
:members: | ||
:show-inheritance: | ||
|
||
.. automodapi:: mowl.evaluation | ||
:no-heading: | ||
:headings: -- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,6 @@ | ||
mowl.models | ||
============ | ||
|
||
* :doc:`graphs` | ||
* :doc:`syntactic` | ||
* :doc:`elembeddings` | ||
* :doc:`elboxembeddings` | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 0 | ||
:hidden: | ||
:glob: | ||
|
||
graphs | ||
syntactic | ||
elembeddings | ||
elboxembeddings | ||
|
||
.. automodapi:: mowl.models | ||
:no-heading: | ||
:headings: -- |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.