-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
243 additions
and
230 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 |
---|---|---|
@@ -1,5 +0,0 @@ | ||
# Table of contents | ||
|
||
* [Documentation Generation](README.md) | ||
{docugen} | ||
|
||
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,35 +1,84 @@ | ||
[GLOBAL] | ||
# global variables used in scripts | ||
DIRNAME=ref | ||
LIBRARY_DIRNAME=python | ||
|
||
[DIRNAMES_TO_TITLES] | ||
# key-value map taking directory names to their titles in the Gitbook sidebar | ||
# auto-generated dirname/title maps are added in scripts | ||
ref=Reference | ||
cli=Command Line Interface | ||
java=Java Library \[Beta\] | ||
python=Python Library | ||
data-types=Data Types | ||
public-api=Import & Export API | ||
python=Python Library | ||
integrations=Integrations | ||
java=Java Library \[Beta\] | ||
keras=Keras | ||
|
||
[SKIPS] | ||
# subdirectories of ref/ to skip when creating table of contents/SUMMARY.md | ||
elements=app,java | ||
|
||
### | ||
# | ||
# SUBCONFIGurations for doc generation in each "module" | ||
# | ||
### | ||
|
||
[EXAMPLE_SUBCONFIG] | ||
# an example subconfig, all fields are mandatory but some can be empty | ||
# see library.py for how these fields are used | ||
dirname=name-of-directory-for-this | ||
title=Human Readable Title for Sidebar | ||
slug=prefix.for.markdown.filename. | ||
elements=python,objects,that,you,want,to,document,commmaseparated | ||
# see handle_additions in library.py for use of add-from and add-elements | ||
add-from=submodule.toadd.elementsfrom | ||
add-elements=elements,from,that,submodule | ||
# see get_dunder_doc in library.py for use of module-doc-from | ||
module-doc-from=other.module.with.dunderdoc | ||
|
||
[SUBCONFIGS] | ||
# add your subconfig's name here to document a new module | ||
names=WANDB_CORE,WANDB_DATATYPES,WANDB_API,WANDB_INTEGRATIONS | ||
|
||
[WANDB_CORE] | ||
# main python client | ||
dirname=python | ||
title=Python Library | ||
slug=wandb. | ||
elements=Artifact,agent,config,controller,finish,init,log,save,summary,sweep,watch,__version__ | ||
add-from=wandb_sdk.wandb_run | ||
add-elements=Run | ||
module-doc-from=self | ||
|
||
[WANDB_DATATYPES] | ||
elements=Graph,Image,Plotly,Video,Audio,Table,Html,Object3D,Molecule,Histogram,BoundingBoxes2D,ImageMask | ||
# data types submodule, including media and tables | ||
dirname=data-types | ||
title=Data Types | ||
slug=wandb.data\_types. | ||
elements=Graph,Image,Plotly,Video,Audio,Table,Html,Object3D,Molecule,Histogram | ||
add-from=data_types | ||
add-elements=ImageMask,BoundingBoxes2D | ||
module-doc-from=data_types | ||
|
||
[WANDB_API] | ||
elements=Api,Projects,Project,Runs,Run,Sweep,Files,File,Artifact | ||
# public API subdmodule | ||
dirname=public-api | ||
title=Import & Export API | ||
slug=wandb.apis.public. | ||
elements= | ||
add-from=apis.public | ||
add-elements=Api,Projects,Project,Runs,Run,Sweep,Files,File,Artifact | ||
module-doc-from=apis.public | ||
|
||
[WANDB_INTEGRATIONS] | ||
elements=keras, | ||
# - sklearn | ||
# - gym | ||
# - lightgbm | ||
# - sacred | ||
# - tensorflow | ||
# - tensorboard | ||
# - xgboost | ||
# - fastai | ||
# - torch | ||
# - sagemaker | ||
# integrations with other libraries that we host the code for | ||
dirname=integrations | ||
title=Integrations | ||
# slugs for integrations are handled differently, see generate.py | ||
slug=wandb. | ||
elements=keras | ||
add-from= | ||
add-elements=ValidationDataLogger | ||
module-doc-from= |
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
Oops, something went wrong.