Skip to content

Commit

Permalink
Minor change in naming convention.
Browse files Browse the repository at this point in the history
Use N-Fold frame extractor name in consistent way.
  • Loading branch information
mmalohlava committed Jun 2, 2014
1 parent a2f2856 commit 6ff6b22
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/main/java/water/api/Inspect2.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public static Response redirect(Request req, String src_key) {
DownloadDataset.link(skey, "Download as CSV")+", "+
ExportFiles.link(skey, "Export to file")+", "+
UIUtils.qlink(FrameSplitPage.class, skey, "Split frame") + ", " +
UIUtils.qlink(FrameExtractPage.class, skey, "N-fold extract") + ", " +
UIUtils.qlink(NFoldFrameExtractPage.class, skey, "N-fold extract") + ", " +
UIUtils.qlink(ReBalance.class, skey, "ReBalance frame (load balancing)") +
"</div>");
String _scrollto = String.valueOf(offset - 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import water.*;
import water.fvec.Frame;

public class FrameExtractPage extends Func {
public class NFoldFrameExtractPage extends Func {
static final int API_WEAVER = 1; // This file has auto-gen'd doc & json fields
static public DocGen.FieldDoc[] DOC_FIELDS; // Initialized from Auto-Gen code.

Expand Down
18 changes: 9 additions & 9 deletions src/main/java/water/api/RequestServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,19 +140,19 @@ public enum API_VERSION {
registerRequest(new hex.LR2());
registerRequest(new ReBalance());
registerRequest(new FrameSplitPage());
registerRequest(new FrameExtractPage());
registerRequest(new NFoldFrameExtractPage());
registerRequest(new GapStatistic());
registerRequest(new CreateFrame());
registerRequest(new KillMinus3());
} else {
Request.addToNavbar(registerRequest(new hex.LR2()), "Linear Regression2", "Beta");
Request.addToNavbar(registerRequest(new ReBalance()), "ReBalance", "Beta");
Request.addToNavbar(registerRequest(new FrameSplitPage()), "Split frame", "Beta");
Request.addToNavbar(registerRequest(new FrameExtractPage()),"N-Fold frame extract", "Beta");
Request.addToNavbar(registerRequest(new Console()), "Console", "Beta");
Request.addToNavbar(registerRequest(new GapStatistic()), "Gap Statistic", "Beta");
Request.addToNavbar(registerRequest(new CreateFrame()), "Create Frame", "Beta");
Request.addToNavbar(registerRequest(new KillMinus3()), "Kill Minus 3", "Beta");
Request.addToNavbar(registerRequest(new hex.LR2()), "Linear Regression2", "Beta");
Request.addToNavbar(registerRequest(new ReBalance()), "ReBalance", "Beta");
Request.addToNavbar(registerRequest(new FrameSplitPage()), "Split frame", "Beta");
Request.addToNavbar(registerRequest(new NFoldFrameExtractPage()),"N-Fold frame extract", "Beta");
Request.addToNavbar(registerRequest(new Console()), "Console", "Beta");
Request.addToNavbar(registerRequest(new GapStatistic()), "Gap Statistic", "Beta");
Request.addToNavbar(registerRequest(new CreateFrame()), "Create Frame", "Beta");
Request.addToNavbar(registerRequest(new KillMinus3()), "Kill Minus 3", "Beta");
// Request.addToNavbar(registerRequest(new ExportModel()), "Export Model", "Beta (FluidVecs!)");
// Request.addToNavbar(registerRequest(new ImportModel()), "Import Model", "Beta (FluidVecs!)");
}
Expand Down

0 comments on commit 6ff6b22

Please sign in to comment.