-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commit of the following: commit c3f1087 Author: AndreFCruz <[email protected]> Date: Fri Jul 5 20:53:40 2024 +0200 removed dev branch from docs workflow commit b0b8027 Author: AndreFCruz <[email protected]> Date: Fri Jul 5 20:22:49 2024 +0200 minor notebook update commit 7f7ac05 Author: AndreFCruz <[email protected]> Date: Fri Jul 5 20:11:02 2024 +0200 update docs requirements commit e4b4e9b Author: AndreFCruz <[email protected]> Date: Fri Jul 5 20:06:23 2024 +0200 update docs requirements commit 5d172b3 Author: AndreFCruz <[email protected]> Date: Fri Jul 5 19:57:02 2024 +0200 set docs to track dev branch as well commit 6c0cb80 Author: AndreFCruz <[email protected]> Date: Fri Jul 5 19:55:03 2024 +0200 updated documentation commit 085409f Author: AndreFCruz <[email protected]> Date: Fri Jul 5 18:51:26 2024 +0200 updated notebooks commit 0e5fc76 Author: AndreFCruz <[email protected]> Date: Thu Jul 4 17:54:57 2024 +0200 updated gitignore commit 203182f Author: AndreFCruz <[email protected]> Date: Thu Jul 4 16:02:20 2024 +0200 minor readme update commit 1d1c8bf Author: AndreFCruz <[email protected]> Date: Thu Jul 4 14:44:54 2024 +0200 updated feature importance plots commit 37f9483 Author: AndreFCruz <[email protected]> Date: Thu Jul 4 14:26:45 2024 +0200 updated feature importance notebooks commit d465024 Author: AndreFCruz <[email protected]> Date: Wed Jul 3 13:21:12 2024 +0200 updated notebooks commit ce428da Author: AndreFCruz <[email protected]> Date: Tue Jul 2 12:08:55 2024 +0200 updated ACS benchmark results commit d357258 Author: AndreFCruz <[email protected]> Date: Tue Jul 2 11:48:06 2024 +0200 minor notebook update
- Loading branch information
1 parent
d67fad5
commit 4b978b0
Showing
22 changed files
with
3,267 additions
and
558 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// File: custom.js | ||
|
||
/** | ||
* This function will make sure all links in the document open as separate tabs | ||
* instead of opening on the current user window. | ||
*/ | ||
window.onload = function () { | ||
let links = document.getElementsByTagName('a'); | ||
for (let l of links) { | ||
if (l.classList.contains("reference") && l.classList.contains("external")) { | ||
l.target = '_blank'; // Open links in a new tab | ||
} | ||
} | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Notebooks Gallery | ||
================= | ||
|
||
.. nbgallery:: | ||
notebooks/minimal-example.ipynb | ||
notebooks/run-benchmark.ipynb |
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,5 @@ | ||
README.md | ||
========= | ||
|
||
.. include:: ../README.md | ||
:parser: myst_parser.sphinx_ |
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,53 @@ | ||
folktexts.acs package | ||
===================== | ||
|
||
Submodules | ||
---------- | ||
|
||
folktexts.acs.acs\_columns module | ||
--------------------------------- | ||
|
||
.. automodule:: folktexts.acs.acs_columns | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.acs.acs\_dataset module | ||
--------------------------------- | ||
|
||
.. automodule:: folktexts.acs.acs_dataset | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.acs.acs\_questions module | ||
----------------------------------- | ||
|
||
.. automodule:: folktexts.acs.acs_questions | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.acs.acs\_tasks module | ||
------------------------------- | ||
|
||
.. automodule:: folktexts.acs.acs_tasks | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.acs.acs\_thresholds module | ||
------------------------------------ | ||
|
||
.. automodule:: folktexts.acs.acs_thresholds | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: folktexts.acs | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,61 @@ | ||
folktexts.cli package | ||
===================== | ||
|
||
Submodules | ||
---------- | ||
|
||
folktexts.cli.download\_models module | ||
------------------------------------- | ||
|
||
.. automodule:: folktexts.cli.download_models | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.cli.eval\_feature\_importance module | ||
---------------------------------------------- | ||
|
||
.. automodule:: folktexts.cli.eval_feature_importance | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.cli.experiments module | ||
-------------------------------- | ||
|
||
.. automodule:: folktexts.cli.experiments | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.cli.launch\_experiments\_htcondor module | ||
-------------------------------------------------- | ||
|
||
.. automodule:: folktexts.cli.launch_experiments_htcondor | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.cli.rerun\_experiment module | ||
-------------------------------------- | ||
|
||
.. automodule:: folktexts.cli.rerun_experiment | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
folktexts.cli.run\_acs\_benchmark module | ||
---------------------------------------- | ||
|
||
.. automodule:: folktexts.cli.run_acs_benchmark | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: folktexts.cli | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Oops, something went wrong.