Skip to content

Commit

Permalink
Fixed typos, updated Deep Learning PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica0xdata committed Dec 10, 2014
1 parent 14fe231 commit 28b7ced
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified docs/deeplearning/DeepLearningBookletV1.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions docs/gbm/gbmRVignette.tex
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ \subsection{Performing a trial run}
\subsubsection{Extracting and handling the results}
Now, extract the parameters of the model, examine the scoring process, and make predictions on new data.
Now, extract the parameters of the model, examine the scoring process, and make predictions on the new data.
\begin{spverbatim}
#View the specified parameters of your GBM model
Expand All @@ -359,7 +359,7 @@ \subsubsection{Extracting and handling the results}
The second command ({\texttt{air.model}}) returns the trained model's training and validation errors.
\\
\\
After generating a satisfactory model, use the \texttt{h2o.predict()} command to compute and store predictions on new data, which can then be used for further tasks in the interactive modeling process.
After generating a satisfactory model, use the \texttt{h2o.predict()} command to compute and store predictions on the new data, which can then be used for further tasks in the interactive modeling process.
\begin{spverbatim}
#Perform classification on the held out data
prediction = h2o.predict(air.model, newdata=air_test.hex)
Expand All @@ -383,7 +383,7 @@ \subsubsection{Variable importances}
\subsubsection{Java model}
To access Java (POJO) code to use to build the current model in Java, click \textsc{Java model} button in the top right of a model summary page. If the model is small enough, the code for the model displays within the GUI; larger models can be inspected after downloading the model.
To access Java (POJO) code to use to build the current model in Java, click the \textsc{Java model} button in the top right of a model summary page. If the model is small enough, the code for the model displays within the GUI; larger models can be inspected after downloading the model.
\\
\\
To download the model:
Expand Down
4 changes: 2 additions & 2 deletions docs/r/R_Vignette.tex
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ \subsection{Installing H2O in R}
\subsection{Making a build from the Source Code}
If you are a developer who wants to make changes to the R package before building and installing it, pull the source code from Git (\url{https://github.com/h2oai/h2o}) and follow the instructions in From Source Code (Github) at \url{http://docs.h2o.ai/developuser/quickstart\_git.html}.

After making the build, navigate to the Rcran folder with the R package in the build’s directory, then run and install.
After making the build, navigate to the Rcran folder with the R package in the build directory, then run and install.
\begin{spverbatim}
$ make clean
$ make build
Expand Down Expand Up @@ -162,7 +162,7 @@ \subsection{Launching from R}

If you are operating on a single node, initialize H2O using: \begin{spverbatim} h2o_server = h2o.init()\end{spverbatim}\\

To connect with an existing H2O cluster node other than the default localhost:54321, specify the IP address and port number in the parentheses. For example:
\begin{spverbatim}h2o_cluster = h2o.init(ip = "192.555.1.123", port = 12345)\end{spverbatim}
To connect with an existing H2O cluster node other than the default localhost:54321, specify the IP address and port number in the parentheses. For example:\begin{spverbatim}h2o_cluster = h2o.init(ip = "192.555.1.123", port = 12345)\end{spverbatim}


\subsection{Launching from the Command Line}
Expand Down

0 comments on commit 28b7ced

Please sign in to comment.