Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #311

Merged
merged 26 commits into from
Nov 24, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8517438
Setup.py added
Demirrr Oct 30, 2023
1b19f6b
__repr__ included for EvoLearnerNode to show list of respective objects
Demirrr Oct 30, 2023
a2bf10c
Readme updated via examples and DRILL refactored
Demirrr Oct 30, 2023
4e481dc
gradio included
Demirrr Oct 30, 2023
641b7b6
Text reduced
Demirrr Oct 30, 2023
2b9df00
Merge branch 'develop' into DRILL
Demirrr Oct 30, 2023
04aeacd
Merge pull request #307 from dice-group/DRILL
Demirrr Oct 30, 2023
b4e0182
Added more support for triplestore calls
alkidbaci Nov 2, 2023
99e0a3b
Initialize KB with triplestore address only
alkidbaci Nov 2, 2023
fbaa456
Fixed query when owl:Thing used in UNION, Intersect or as filler
alkidbaci Nov 2, 2023
e32494a
Changed example to run CELOE instead
alkidbaci Nov 2, 2023
dc0972b
Updated converter test to recent changes
alkidbaci Nov 2, 2023
245161d
Refactoring
alkidbaci Nov 3, 2023
af61c2c
Updated documentation
alkidbaci Nov 3, 2023
6bdede0
Refactoring KB
alkidbaci Nov 3, 2023
f7f9e60
Merge pull request #308 from dice-group/retrieval_via_triplestore
Demirrr Nov 7, 2023
34de594
Added 'requests' package
alkidbaci Nov 9, 2023
dd79bcc
Removed 'use_triplestore' argument
alkidbaci Nov 9, 2023
934b725
Fixed an issue
alkidbaci Nov 9, 2023
7235127
Added `verbalize` method for CL models. #292
alkidbaci Nov 21, 2023
cfc96f6
Refactoring: owlapy is now a dependency
alkidbaci Nov 22, 2023
e51e435
Documentation update
alkidbaci Nov 22, 2023
17921fb
Removed unused files
alkidbaci Nov 23, 2023
5133ca2
Changed description for CL execution
alkidbaci Nov 23, 2023
e3379ea
Added verbalization example
alkidbaci Nov 23, 2023
21b818d
Merge pull request #310 from dice-group/general_adjustments
Demirrr Nov 24, 2023
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
Prev Previous commit
Next Next commit
__repr__ included for EvoLearnerNode to show list of respective objects
Demirrr committed Oct 30, 2023

Unverified

This user has not yet uploaded their public signing key.
commit 1b19f6b893226def1985901e77181e3ceb935612
3 changes: 3 additions & 0 deletions ontolearn/search.py
Original file line number Diff line number Diff line change
@@ -288,6 +288,9 @@ def __str__(self):
_NodeIndividualsCount.__str__(self),
))

def __repr__(self):
return self.__str__()


class RL_State(_NodeConcept, _NodeQuality, _NodeHeuristic, AbstractNode, _NodeParentRef['RL_State']):
renderer: ClassVar[OWLObjectRenderer] = DLSyntaxObjectRenderer()