Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
afa522e
:recycle: add `verbose` for loging
HamedBabaei Jul 3, 2025
a86f815
:sparkles: add high-level encapsulation to learner
HamedBabaei Jul 3, 2025
f590ff7
:sparkles: add retriever learner
HamedBabaei Jul 3, 2025
de3e0f6
:memo: typ
HamedBabaei Jul 4, 2025
253b39d
:memo: add retriever learner example
HamedBabaei Jul 4, 2025
f59b1e3
:sparkles: add label mapper for llm
HamedBabaei Jul 4, 2025
ca2ac36
:sparkles: add llm learner
HamedBabaei Jul 4, 2025
2cec8bf
:recycle: optimize code
HamedBabaei Jul 4, 2025
e5807b7
:recycle: optimize code
HamedBabaei Jul 5, 2025
fa669a0
:memo: add RAG learner example
HamedBabaei Jul 6, 2025
f5a70ca
:sparkles: add RAG learner
HamedBabaei Jul 6, 2025
5201071
:recycle: :memo: refactor&add example dir
HamedBabaei Jul 6, 2025
e2d392a
:fire: delete redundant scripts
HamedBabaei Jul 7, 2025
6a06195
:recycle: :sparkles: evaluations
HamedBabaei Jul 7, 2025
48081c9
:recycle: minor refactoring
HamedBabaei Jul 7, 2025
d5e5862
:recycle: add tasks_ground_truth_former
HamedBabaei Jul 7, 2025
3f121bc
:recycle: refactor pipeline
HamedBabaei Jul 7, 2025
c3db0d5
:memo: pipeline examples
HamedBabaei Jul 8, 2025
0e7aeb0
:recycle: term-typing evaluation
HamedBabaei Jul 8, 2025
16497d1
:recycle: add parameters
HamedBabaei Jul 8, 2025
641a5b1
:recycle: modulate `autoontology`
HamedBabaei Jul 8, 2025
61cfe50
:fire: rename `learner_pipeline.py` -> `_learner.py`
HamedBabaei Jul 8, 2025
d613fca
:fire: remove `push_to_hub()` from ontologizer
HamedBabaei Jul 8, 2025
9357bb0
:sparkles: add `push_to_hub()` behavior back to `processor`
HamedBabaei Jul 8, 2025
6510ead
:pencil2: minor fix
HamedBabaei Jul 8, 2025
6c7d994
:pencil2: add llms4ol image
HamedBabaei Jul 10, 2025
b42de63
:fire: remove unwanted images
HamedBabaei Jul 10, 2025
856fa5d
:memo: update docs
HamedBabaei Jul 10, 2025
8177ea9
:pencil2: ignore processor
HamedBabaei Jul 10, 2025
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
123 changes: 123 additions & 0 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
.wy-nav-content {
max-width: 1280px;
}

a.icon-home {
font-size: 1.4em;
}

dl.class > dt {
width: 100%;
}

dd > dl {
width: 100%;
}

.toctree-l1 > ul {
margin-top: 0px !important;
}

.wy-side-nav-search .wy-dropdown>a:hover, .wy-side-nav-search>a:hover {
background: none;
}

.project-name {
font-size: 1.4em;
}

.wy-side-nav-search {
padding-top: 0px;
}

.components {
display: flex;
flex-flow: row wrap;
gap: 1rem; /* Use gap for consistent spacing */
}

.components > .box {
flex: 0 0 auto; /* Don't grow or shrink, use natural size */
margin: 0; /* Remove margin since we're using gap */
padding: 1rem;
border-style: solid;
border-width: 1px;
border-radius: 0.5rem;
border-color: rgb(55 65 81);
background-color: #e3e3e3;
color: #404040;
width: 11.3rem;
box-sizing: border-box;
}

.components > .box:nth-child(1) > .header {
background-image: linear-gradient(to bottom right, #60a5fa, #3b82f6);
}

.components > .box:nth-child(2) > .header {
background-image: linear-gradient(to bottom right, #fb923c, #f97316);
}

.components > .box:nth-child(3) > .header {
background-image: linear-gradient(to bottom right, #f472b6, #ec4899);
}

.components > .box:nth-child(4) > .header {
background-image: linear-gradient(to bottom right, #a78bfa, #8b5cf6);
}

.components > .box:nth-child(5) > .header {
background-image: linear-gradient(to bottom right, #34d399, #10b981);
}

.components > .box:nth-child(6) > .header {
background-image: linear-gradient(to bottom right, #fbbf24, #f59e0b);
}


.components > .optional {
background: repeating-linear-gradient(
135deg,
#f1f1f1,
#f1f1f1 25px,
#e3e3e3 25px,
#e3e3e3 50px
);
}

.components > .box > .header {
border-style: solid;
border-width: 1px;
border-radius: 0.5rem;
border-color: rgb(55 65 81);
padding: 0.5rem 0.2rem;
text-align: center;
margin-bottom: 0.5rem;
font-weight: bold;
color: white;
}

.sidebar p {
font-size: 100% !important;
}

.training-arguments {
background-color: #f3f6f6;
border: 1px solid #e1e4e5;
}

.training-arguments > .header {
font-weight: 700;
padding: 6px 12px;
background: #e1e4e5;
}

.training-arguments > .table {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}

.training-arguments > .table > a {
padding: 0.5rem;
border: 1px solid #e1e4e5;
}
39 changes: 39 additions & 0 deletions docs/source/_static/custom.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"myst_parser",
"sphinx.ext.napoleon",
"sphinx.ext.autodoc",
"myst_parser",
"sphinx_markdown_tables",
"sphinx_copybutton",
"sphinx.ext.intersphinx",
Expand Down Expand Up @@ -76,7 +76,8 @@
("Github", "https://github.com/sciknoworg/OntoLearner"),
],
"navigation_depth": 4,
"collapse_navigation": True
"collapse_navigation": True,
"logo_only": True,
}

html_static_path = ["_static"]
Expand All @@ -87,7 +88,7 @@
]

html_css_files = [
# 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css',
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css',
'custom.css',
]

Expand Down
Binary file added docs/source/images/LLMs4OL.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/source/images/logo-v1.ico
Binary file not shown.
Binary file removed docs/source/images/logo-v1.jpg
Binary file not shown.
Binary file removed docs/source/images/logo-v2.ico
Binary file not shown.
Binary file removed docs/source/images/logo-v2.png
Binary file not shown.
Loading