Skip to content

Commit

Permalink
-Disbale tag and genre files selection and textfields
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoghaddam committed Nov 12, 2019
1 parent 48bee81 commit 114900c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 197 deletions.
193 changes: 0 additions & 193 deletions src/main/java/algorithms/FactorizationMachine.java

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/algorithms/FunkSVD.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package algorithms;

import algorithms.fatorizationmachine.LearningMethod;
import algorithms.funksvd.AlternatingLeastSquareLearner;
import algorithms.funksvd.GradientDescentSVDLearner;
import algorithms.funksvd.Learner;
Expand Down
12 changes: 12 additions & 0 deletions src/main/java/algorithms/LearningMethod.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package algorithms;

/**
* This enum contains all the learning methods
*
* @author FBM
*
*/
public enum LearningMethod {
SGD,
ALS;
}
6 changes: 3 additions & 3 deletions src/main/resources/views/DatasetWizardFXMLView.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
<Font name="Calibri" size="16.0"/>
</font>
</CheckBox>
<CheckBox fx:id="tagDatasetCheckBox" disable="true" mnemonicParsing="false" selected="true" text="Tag">
<CheckBox fx:id="tagDatasetCheckBox" disable="true" mnemonicParsing="false" selected="false" text="Tag">
<font>
<Font name="Calibri" size="16.0"/>
</font>
</CheckBox>
<CheckBox fx:id="genresDatasetCheckBox" disable="true" mnemonicParsing="false" selected="true"
<CheckBox fx:id="genresDatasetCheckBox" disable="true" mnemonicParsing="false" selected="false"
text="Genres">
<font>
<Font name="Calibri" size="16.0"/>
</font>
</CheckBox>
<CheckBox fx:id="visualFeaturesDatasetCheckBox" mnemonicParsing="false" selected="true"
<CheckBox fx:id="visualFeaturesDatasetCheckBox" mnemonicParsing="false" selected="false"
text="Visual Features">
<font>
<Font name="Calibri" size="16.0"/>
Expand Down

0 comments on commit 114900c

Please sign in to comment.