source: trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/usage/CMDcalcEntropy.java @ 927

Last change on this file since 927 was 927, checked in by sherbold, 12 years ago
  • added copyright under the Apache License, Version 2.0
File size: 2.1 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.commands.usage;
16
17import java.util.List;
18
19import de.ugoe.cs.autoquest.CommandHelpers;
20import de.ugoe.cs.autoquest.usageprofiles.FirstOrderMarkovModel;
21import de.ugoe.cs.util.console.Command;
22import de.ugoe.cs.util.console.Console;
23import de.ugoe.cs.util.console.GlobalDataContainer;
24
25/**
26 * <p>
27 * Command to calculate the entropy of first-order Markov models.
28 * </p>
29 *
30 * @author Steffen Herbold
31 * @version 1.0
32 */
33public class CMDcalcEntropy implements Command {
34
35        /*
36         * (non-Javadoc)
37         *
38         * @see de.ugoe.cs.util.console.Command#help()
39         */
40        @Override
41        public String help() {
42                return "calcEntropy <modelname>";
43        }
44
45        /*
46         * (non-Javadoc)
47         *
48         * @see de.ugoe.cs.util.console.Command#run(java.util.List)
49         */
50        @Override
51        public void run(List<Object> parameters) {
52                String modelname = "";
53                try {
54                        modelname = (String) parameters.get(0);
55                } catch (Exception e) {
56                        throw new IllegalArgumentException();
57                }
58
59                FirstOrderMarkovModel model = null;
60                Object dataObject = GlobalDataContainer.getInstance()
61                                .getData(modelname);
62                if (dataObject == null) {
63                        CommandHelpers.objectNotFoundMessage(modelname);
64                        return;
65                }
66                if (!(dataObject instanceof FirstOrderMarkovModel)) {
67                        CommandHelpers.objectNotType(modelname, "FirstOrderMarkovModel");
68                        return;
69                }
70                model = (FirstOrderMarkovModel) dataObject;
71                double entropy = model.calcEntropy();
72                if (!Double.isNaN(entropy)) {
73                        Console.println("entropy: " + entropy);
74                }
75        }
76
77}
Note: See TracBrowser for help on using the repository browser.