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

Github Wiki migration #79

Merged
merged 24 commits into from
Aug 22, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
use a fancy theme
  • Loading branch information
tovbinm committed Aug 22, 2018
commit 211cc75d132fc194d6bb33f4e52917939c5eeee8
2 changes: 1 addition & 1 deletion docs/abstractions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val age: Feature[RealNN] = FeatureBuilder.RealNN[Passenger].extract(_.age.toReal

The above lines of code define two ```Features``` of type ```Text``` and ```RealNN``` called ```name``` and ```age``` that are extracted from data of type ```Passenger``` by applying the stated extract methods.

One can also define Features that are the result of complex time-series aggregates. Take a look at this [example](/Examples/Time-Series-Aggregates-and-Joins.html) and this [page](/Developer-Guide#aggregate-data-readers) for more advanced reading on FeatureBuilders.
One can also define Features that are the result of complex time-series aggregates. Take a look at this [example](/examples/Time-Series-Aggregates-and-Joins.html) and this [page](/Developer-Guide#aggregate-data-readers) for more advanced reading on FeatureBuilders.

Features can then be manipulated using Stages to produce new Features. In TransmogrifAI, as in SparkML, there are two types of Stages -- Transformers and Estimators.

Expand Down
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,15 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
# html_theme_options = {}
html_theme_options = {
'display_version': True
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
7 changes: 0 additions & 7 deletions docs/developer-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1035,10 +1035,3 @@ workflow.setParameters(new OpParams(stageParams = ("MyTopKStage" -> ("TopK" -> 1
```

Here we are resetting the “TopK” parameter of a stage with class name “MyTopKStage” to a value of 10. Caution must be exercised here because valid settings are not checked until runtime. This method is primarily designed to be used with CLI and Scheduler services as a means of injecting parameters values.


***


.. toctree::
:maxdepth: 2