weka.gui.beans.SerializedModelSaverCustomizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-dev Show documentation
Show all versions of weka-dev Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This version represents the developer version, the
"bleeding edge" of development, you could say. New functionality gets added
to this version.
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* SerializedModelSaverCustomizer.java
* Copyright (C) 2008-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.gui.beans;
import weka.core.Environment;
import weka.core.EnvironmentHandler;
import weka.core.Tag;
import weka.gui.GenericObjectEditor;
import weka.gui.PropertySheetPanel;
import weka.gui.WekaFileChooser;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.SwingUtilities;
import javax.swing.filechooser.FileFilter;
import java.awt.BorderLayout;
import java.awt.Dialog.ModalityType;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.File;
/**
* GUI Customizer for the SerializedModelSaver bean
*
* @author Mark Hall (mhall{[at]}pentaho{[dot]}org
* @version $Revision: 15104 $
*/
public class SerializedModelSaverCustomizer
extends JPanel
implements BeanCustomizer, CustomizerCloseRequester,
CustomizerClosingListener, EnvironmentHandler {
/** for serialization */
private static final long serialVersionUID = -4874208115942078471L;
static {
GenericObjectEditor.registerEditors();
}
private final PropertyChangeSupport m_pcSupport =
new PropertyChangeSupport(this);
private weka.gui.beans.SerializedModelSaver m_smSaver;
private final PropertySheetPanel m_SaverEditor =
new PropertySheetPanel();
private final WekaFileChooser m_fileChooser = new WekaFileChooser(new File(
System.getProperty("user.dir")));
private Window m_parentWindow;
private JDialog m_fileChooserFrame;
// private JTextField m_prefixText;
private EnvironmentField m_prefixText;
private JTextField m_incrementalSaveSchedule;
private JComboBox m_fileFormatBox;
private JCheckBox m_relativeFilePath;
private JCheckBox m_includeRelationName;
private Environment m_env = Environment.getSystemWide();
private EnvironmentField m_directoryText;
private ModifyListener m_modifyListener;
private String m_prefixBackup;
private File m_directoryBackup;
private boolean m_relativeBackup;
private boolean m_relationBackup;
private Tag m_formatBackup;
/** Constructor */
public SerializedModelSaverCustomizer() {
/*
* try { m_SaverEditor.addPropertyChangeListener( new
* PropertyChangeListener() { public void propertyChange(PropertyChangeEvent
* e) { repaint(); if (m_smSaver != null) {
* System.err.println("Property change!!"); //
* m_smSaver.setSaver(m_smSaver.getSaver()); } } }); repaint(); } catch
* (Exception ex) { ex.printStackTrace(); }
*/
setLayout(new BorderLayout());
m_fileChooser.setDialogType(JFileChooser.SAVE_DIALOG);
m_fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
m_fileChooser.setApproveButtonText("Select directory and prefix");
m_fileChooser.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand().equals(JFileChooser.APPROVE_SELECTION)) {
try {
m_smSaver.setPrefix(m_prefixText.getText());
// m_smSaver.setDirectory(m_fileChooser.getSelectedFile());
File selectedFile = m_fileChooser.getSelectedFile();
m_directoryText.setText(selectedFile.toString());
} catch (Exception ex) {
ex.printStackTrace();
}
}
// closing
if (m_parentWindow != null) {
m_fileChooserFrame.dispose();
}
}
});
}
@Override
public void setParentWindow(Window parent) {
m_parentWindow = parent;
}
/** Sets up dialog for saving models to a file */
public void setUpFile() {
removeAll();
m_fileChooser.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
return f.isDirectory();
}
@Override
public String getDescription() {
return "Directory";
}
});
m_fileChooser.setAcceptAllFileFilterUsed(false);
try {
if (!m_smSaver.getDirectory().getPath().equals("")) {
// File tmp = m_smSaver.getDirectory();
String dirStr = m_smSaver.getDirectory().toString();
if (Environment.containsEnvVariables(dirStr)) {
try {
dirStr = m_env.substitute(dirStr);
} catch (Exception ex) {
// ignore
}
}
File tmp = new File(dirStr);
;
tmp = new File(tmp.getAbsolutePath());
m_fileChooser.setCurrentDirectory(tmp);
}
} catch (Exception ex) {
System.out.println(ex);
}
JPanel innerPanel = new JPanel();
innerPanel.setLayout(new BorderLayout());
JPanel alignedP = new JPanel();
GridBagLayout gbLayout = new GridBagLayout();
alignedP.setLayout(gbLayout);
JLabel prefixLab = new JLabel("Prefix for file name", SwingConstants.RIGHT);
prefixLab.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
GridBagConstraints gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 0;
gbConstraints.gridx = 0;
gbLayout.setConstraints(prefixLab, gbConstraints);
alignedP.add(prefixLab);
// m_prefixText = new JTextField(m_smSaver.getPrefix(), 25);
m_prefixText = new EnvironmentField();
m_prefixText.setEnvironment(m_env);
/*
* int width = m_prefixText.getPreferredSize().width; int height =
* m_prefixText.getPreferredSize().height; m_prefixText.setMinimumSize(new
* Dimension(width * 2, height)); m_prefixText.setPreferredSize(new
* Dimension(width * 2, height));
*/
m_prefixText.setText(m_smSaver.getPrefix());
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 0;
gbConstraints.gridx = 1;
gbLayout.setConstraints(m_prefixText, gbConstraints);
alignedP.add(m_prefixText);
JLabel ffLab = new JLabel("File format", SwingConstants.RIGHT);
ffLab.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 1;
gbConstraints.gridx = 0;
gbLayout.setConstraints(ffLab, gbConstraints);
alignedP.add(ffLab);
setUpFileFormatComboBox();
m_fileFormatBox.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 1;
gbConstraints.gridx = 1;
gbLayout.setConstraints(m_fileFormatBox, gbConstraints);
alignedP.add(m_fileFormatBox);
JPanel about = m_SaverEditor.getAboutPanel();
if (about != null) {
innerPanel.add(about, BorderLayout.NORTH);
}
add(innerPanel, BorderLayout.NORTH);
JLabel directoryLab = new JLabel("Directory", SwingConstants.RIGHT);
directoryLab.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 2;
gbConstraints.gridx = 0;
gbLayout.setConstraints(directoryLab, gbConstraints);
alignedP.add(directoryLab);
m_directoryText = new EnvironmentField();
m_directoryText.setEnvironment(m_env);
/*
* width = m_directoryText.getPreferredSize().width; height =
* m_directoryText.getPreferredSize().height;
* m_directoryText.setMinimumSize(new Dimension(width * 2, height));
* m_directoryText.setPreferredSize(new Dimension(width * 2, height));
*/
m_directoryText.setText(m_smSaver.getDirectory().toString());
JButton browseBut = new JButton("Browse...");
browseBut.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
// final JFrame jf = new JFrame("Choose directory");
final JDialog jf =
new JDialog((JDialog) SerializedModelSaverCustomizer.this
.getTopLevelAncestor(),
"Choose directory", ModalityType.DOCUMENT_MODAL);
jf.getContentPane().setLayout(new BorderLayout());
jf.getContentPane().add(m_fileChooser, BorderLayout.CENTER);
m_fileChooserFrame = jf;
jf.pack();
jf.setLocationRelativeTo(SwingUtilities.getWindowAncestor(SerializedModelSaverCustomizer.this));
jf.setVisible(true);
} catch (Exception ex) {
ex.printStackTrace();
}
}
});
JPanel efHolder = new JPanel();
efHolder.setLayout(new BorderLayout());
JPanel bP = new JPanel();
bP.setLayout(new BorderLayout());
bP.setBorder(BorderFactory.createEmptyBorder(5, 0, 5, 5));
bP.add(browseBut, BorderLayout.CENTER);
efHolder.add(bP, BorderLayout.EAST);
efHolder.add(m_directoryText, BorderLayout.CENTER);
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 2;
gbConstraints.gridx = 1;
gbConstraints.weightx = 5; // make sure that extra horizontal space gets
// allocated to this column
gbLayout.setConstraints(efHolder, gbConstraints);
alignedP.add(efHolder);
JLabel saveSchedule =
new JLabel("Incremental classifier save schedule", SwingConstants.RIGHT);
saveSchedule.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 3;
gbConstraints.gridx = 0;
gbLayout.setConstraints(saveSchedule, gbConstraints);
alignedP.add(saveSchedule);
saveSchedule.setToolTipText("How often to save incremental models "
+ "(<=0 means only at the end of the stream)");
m_incrementalSaveSchedule =
new JTextField("" + m_smSaver.getIncrementalSaveSchedule(), 5);
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 3;
gbConstraints.gridx = 1;
gbLayout.setConstraints(m_incrementalSaveSchedule, gbConstraints);
alignedP.add(m_incrementalSaveSchedule);
m_incrementalSaveSchedule
.setToolTipText("How often to save incremental models "
+ "(<=0 means only at the end of the stream)");
JLabel relativeLab =
new JLabel("Use relative file paths", SwingConstants.RIGHT);
relativeLab.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 4;
gbConstraints.gridx = 0;
gbLayout.setConstraints(relativeLab, gbConstraints);
alignedP.add(relativeLab);
m_relativeFilePath = new JCheckBox();
m_relativeFilePath.
setSelected(m_smSaver.getUseRelativePath());
/*
* m_relativeFilePath.addActionListener(new ActionListener() { public void
* actionPerformed(ActionEvent e) {
* m_smSaver.setUseRelativePath(m_relativeFilePath.isSelected()); } });
*/
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 4;
gbConstraints.gridx = 1;
gbLayout.setConstraints(m_relativeFilePath, gbConstraints);
alignedP.add(m_relativeFilePath);
JLabel relationLab =
new JLabel("Include relation name in file name", SwingConstants.RIGHT);
relationLab.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0));
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 5;
gbConstraints.gridx = 0;
gbLayout.setConstraints(relationLab, gbConstraints);
alignedP.add(relationLab);
m_includeRelationName = new JCheckBox();
m_includeRelationName
.setToolTipText("Include the relation name of the training data used "
+ "to create the model in the file name.");
m_includeRelationName.setSelected(m_smSaver.getIncludeRelationName());
gbConstraints = new GridBagConstraints();
gbConstraints.anchor = GridBagConstraints.EAST;
gbConstraints.fill = GridBagConstraints.HORIZONTAL;
gbConstraints.gridy = 5;
gbConstraints.gridx = 1;
gbLayout.setConstraints(m_includeRelationName, gbConstraints);
alignedP.add(m_includeRelationName);
JButton OKBut = new JButton("OK");
OKBut.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
m_smSaver.setPrefix(m_prefixText.getText());
m_smSaver.setDirectory(new File(m_directoryText.getText()));
m_smSaver.
setIncludeRelationName(m_includeRelationName.isSelected());
m_smSaver.setUseRelativePath(m_relativeFilePath.isSelected());
String schedule = m_incrementalSaveSchedule.getText();
if (schedule != null && schedule.length() > 0) {
try {
m_smSaver.setIncrementalSaveSchedule(Integer
.parseInt(m_incrementalSaveSchedule.getText()));
} catch (NumberFormatException ex) {
// ignore
}
}
Tag selected = (Tag) m_fileFormatBox.getSelectedItem();
if (selected != null) {
m_smSaver.setFileFormat(selected);
}
} catch (Exception ex) {
ex.printStackTrace();
}
if (m_modifyListener != null) {
m_modifyListener.setModifiedStatus(
SerializedModelSaverCustomizer.this, true);
}
m_parentWindow.dispose();
}
});
JButton CancelBut = new JButton("Cancel");
CancelBut.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
customizerClosing();
m_parentWindow.dispose();
}
});
JPanel butHolder = new JPanel();
butHolder.setLayout(new FlowLayout());
butHolder.add(OKBut);
butHolder.add(CancelBut);
JPanel holderPanel = new JPanel();
holderPanel.setLayout(new BorderLayout());
holderPanel.add(alignedP, BorderLayout.NORTH);
holderPanel.add(butHolder, BorderLayout.SOUTH);
add(holderPanel, BorderLayout.SOUTH);
}
/**
* Set the model saver to be customized
*
* @param object a weka.gui.beans.SerializedModelSaver
*/
@Override
public void setObject(Object object) {
m_smSaver = (weka.gui.beans.SerializedModelSaver) object;
m_SaverEditor.setTarget(m_smSaver);
m_prefixBackup = m_smSaver.getPrefix();
m_directoryBackup = m_smSaver.getDirectory();
m_relationBackup = m_smSaver.getIncludeRelationName();
m_relativeBackup = m_smSaver.getUseRelativePath();
m_formatBackup = m_smSaver.getFileFormat();
setUpFile();
}
private void setUpFileFormatComboBox() {
m_fileFormatBox = new JComboBox();
for (int i = 0; i < SerializedModelSaver.s_fileFormatsAvailable.size(); i++) {
Tag temp = SerializedModelSaver.s_fileFormatsAvailable.get(i);
m_fileFormatBox.addItem(temp);
}
Tag result = m_smSaver.validateFileFormat(m_smSaver.getFileFormat());
if (result == null) {
m_fileFormatBox.setSelectedIndex(0);
} else {
m_fileFormatBox.setSelectedItem(result);
}
/*
* m_fileFormatBox.addActionListener(new ActionListener() { public void
* actionPerformed(ActionEvent e) { Tag selected =
* (Tag)m_fileFormatBox.getSelectedItem(); if (selected != null) {
* m_smSaver.setFileFormat(selected); } } });
*/
}
/**
* Add a property change listener
*
* @param pcl a PropertyChangeListener
value
*/
@Override
public void addPropertyChangeListener(PropertyChangeListener pcl) {
m_pcSupport.addPropertyChangeListener(pcl);
}
/**
* Remove a property change listener
*
* @param pcl a PropertyChangeListener
value
*/
@Override
public void removePropertyChangeListener(PropertyChangeListener pcl) {
m_pcSupport.removePropertyChangeListener(pcl);
}
/*
* (non-Javadoc)
*
* @see weka.core.EnvironmentHandler#setEnvironment(weka.core.Environment)
*/
@Override
public void setEnvironment(Environment env) {
m_env = env;
}
@Override
public void setModifiedListener(ModifyListener l) {
m_modifyListener = l;
}
@Override
public void customizerClosing() {
// restore backup (when window is closed with close widget or
// cancel button is pressed)
m_smSaver.setPrefix(m_prefixBackup);
m_smSaver.setDirectory(m_directoryBackup);
m_smSaver.setUseRelativePath(m_relativeBackup);
m_smSaver.setIncludeRelationName(m_relationBackup);
m_smSaver.setFileFormat(m_formatBackup);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy