示例#1
0
    def get_gui(self):
        step_group1 = StepGroup(name='Enter your Data')
        step_group1.add_step(
            Step(name='Person speed', widgets=[SimpleGrid(Person)]))
        step_group1.add_step(
            Step(
                name='Training parameters',
                widgets=[{
                    "widget": ParameterForm(),
                    "cols": 6
                }],
            ))

        step_group2 = StepGroup(name='Solve')
        step_group2.add_step(
            Step(name='Learning using Reinforcement learning',
                 widgets=[ExecuteLocalSolver()]))

        step_group3 = StepGroup(name='View the Solution')
        step_group3.add_step(
            Step(name='Result',
                 widgets=[LearningChart(),
                          SimpleGrid(FinalSolution)]))

        return [step_group1, step_group2, step_group3]
示例#2
0
    def get_gui(self):
        step_group1 = StepGroup(name='Enter your data')
        step_group1.add_step(
            Step(name='Enter your locations', widgets=[SimpleGrid(Location)]))
        step_group1.add_step(
            Step(name='Enter your paths', widgets=[SimpleGrid(Path)]))

        step_group2 = StepGroup(name='Solve')
        step_group2.add_step(Step(name='Solve',
                                  widgets=[ExecuteLocalSolver()]))

        step_group3 = StepGroup(name='View Results')
        step_group3.add_step(
            Step(name='View your Results', widgets=[MyKMLMap()]))

        return [step_group1, step_group2, step_group3]
示例#3
0
 def get_gui(self):
     return [
         StepGroup(name='Stores',
                   steps=[Step(name='Stores',
                               widgets=[SimpleGrid(Store)])]),
         StepGroup(name='Map',
                   steps=[Step(name='Map', widgets=[MyKMLMap()])])
     ]
示例#4
0
    def get_gui(self):
        step_group_1 = StepGroup(name='Input')
        step_group_1.add_step(
            Step(name='Search Terms', widgets=[SimpleGrid(TweetSearchTerms)]))
        step_group_1.add_step(
            Step(name='Get Tweets', widgets=[ExecuteGetTweets()]))

        step_group_2 = StepGroup(name='Results')
        step_group_2.add_step(
            Step(name='Tweets', widgets=[SimpleGrid(Tweet, editable=False)]))

        step_group_3 = StepGroup(name='Visualisations')
        step_group_3.add_step(
            Step(name="Sentiment Distribution",
                 widgets=[SentimentScatterChart()]))

        return [step_group_1, step_group_2, step_group_3]
示例#5
0
 def get_gui(self):
     step_groups = []
     step_groups.append(
         generate_ui_step_group('Enter Your Data',
                                [('Cities', [SimpleGrid(City)])]))
     step_groups.append(
         generate_ui_step_group('Preview', [('Map', [GoogleMapsWidget()])]))
     step_groups.append(
         generate_ui_step_group(
             'Solve',
             [('Solve Priority Wish list', [ExecuteLocalSolver()])]))
     step_groups.append(
         generate_ui_step_group('See Solution', [('Prioritised Wish List', [
             KnapsackAllocationWeightPieChart(),
             SimpleGrid(KnapsackItem)
         ])]))
     return step_groups
    def get_gui(self):
        step_group1 = StepGroup(name='Enter your data')
        step_group1.add_step(
            Step(name='Enter your locations',
                 widgets=[SimpleGrid(Shop)],
                 help_text="Enter the set of locations, with their associated \
            demand, that need to be serviced by a facility"))
        step_group1.add_step(
            Step(name='Enter your candidate facilities',
                 widgets=[SimpleGrid(Plant)],
                 help_text="Enter the set of candidate facilities with their \
            capacities and commissioning costs"))
        step_group1.add_step(
            Step(name='Review your data',
                 widgets=[KMLMapInput()],
                 help_text=
                 "Review the locations and candidate facilities entered \
            for correctness"))

        step_group2 = StepGroup(name='Solve')
        step_group2.add_step(
            Step(name='Solve Facility Location Optimisation \
        Problem',
                 widgets=[ExecuteSolverFunction()]))

        step_group3 = StepGroup(name='View the Solution')
        step_group3.add_step(
            Step(
                name='Download KML',
                widgets=[{
                    "widget": SimpleGrid(Flow),
                    "cols": 6
                }, {
                    "widget": PlantSizePieChart(),
                    "cols": 6
                }, {
                    "widget": KMLMapOutput(),
                    "cols": 12
                }],
                help_text="The grid below shows the amount of product flowing \
            from facilities to locations. The map shows the same info \
            geographically."))

        return [step_group1, step_group2, step_group3]
示例#7
0
    def get_gui(self):
        step_options = StepGroup(name='Parameters')
        step_options.add_step(Step(
            name='Parameters',
            widgets=[ParameterForm()],
            help_text="Enter the parameters you want."
        ))
        step_group1 = StepGroup(name='Enter your data')
        step_group1.add_step(Step(
            name='Enter your people',
            widgets=[SimpleGrid(Person)],
            help_text="Enter the set of locations, of people who need food"
        ))
        step_group1.add_step(Step(
            name='Search for nearby food',
            widgets=[FindNearbyPlaces()],
            help_text="Search for nearby food joints that are open."
        ))
        step_group1.add_step(Step(
            name='Enter your locations',
            widgets=[SimpleGrid(Place)],
            help_text="Enter the set of places with their nutritional value."
        ))
        step_group1.add_step(Step(
            name='Review your data',
            widgets=[KMLMapInput()],
            help_text="Review the locations and places entered for correctness"
        ))

        step_group2 = StepGroup(name='Solve')
        step_group2.add_step(Step(name='Solve Food Optimisation Problem', widgets=[
            ExecuteSolverFunction()]))

        step_group3 = StepGroup(name='View the Solution')
        step_group3.add_step(Step(
            name='Download KML',
            widgets=[
                {"widget": SimpleGrid(Path, hidden_column_names=["uuid", "person_id", "place_id"]), "cols": 6}
            ],
            help_text="Enjoy your optimised lunch :)"
        ))

        return [step_options, step_group1, step_group2, step_group3]
示例#8
0
    def get_gui(self):
        step_groups = []

        step_groups.append(
            make_step_group('Input',
                            [('Stores', [SimpleGrid(Store)]),
                             ('Performances', [SimpleGrid(Performance)])]))

        step_groups.append(
            make_step_group('Output',
                            [('Viz', [{
                                'widget': PeformanceBarChart(),
                                'cols': 6
                            }, {
                                'widget': StoreExpensesPieChart(),
                                'cols': 6
                            }, {
                                'widget': MyKMLMap(),
                                'cols': 12
                            }])]))

        return step_groups
示例#9
0
    def get_gui(self):
        step_group1 = StepGroup(name='Input')
        step_group1.add_step(Step(
            name='Commodities',
            widgets=[SimpleGrid(Commodity)],
            help_text="Enter the set of commodities"
        ))

        step_group1.add_step(Step(
            name='Nodes',
            widgets=[
                SimpleGrid(Node),
                MapNodeInput(),
            ],
            help_text="Enter the set of Nodes"
        ))

        step_group1.add_step(Step(
            name='Arcs',
            widgets=[
                SimpleGrid(Arc),
                MapArcInput()
            ],
            help_text="Enter the set of Arcs"
        ))

        step_group1.add_step(Step(
            name='Costs',
            widgets=[SimpleGrid(Cost)],
            help_text="Enter the costs associated with each Arc"
        ))

        step_group1.add_step(Step(
            name='Inflows',
            widgets=[SimpleGrid(Inflow)],
            help_text="Enter the set of inflow requirements for each Node"
        ))

        step_group2 = StepGroup(name='Engine')
        step_group2.add_step(Step(name='Solve Network Flow Problem', widgets=[ExecuteSolverFunction()]))

        step_group3 = StepGroup(name='Output')
        step_group3.add_step(Step(
            name='Flows',
            widgets=[SimpleGrid(NetworkFlow)],
            help_text="Optimal Flows"
        ))

        step_group3 = StepGroup(name='Output')
        step_group3.add_step(Step(
            name='Flows',
            widgets=[
                {'widget': NetworkInflowChart(), 'cols': 6},
                {'widget': NetworkOutflowChart(), 'cols': 6},
                {'widget': MapFlowOutput(), 'cols': 12},
                {'widget': SimpleGrid(NetworkFlow), 'cols': 12},
            ],
            help_text="The grid below shows the optimal Requests selected."
        ))

        return [step_group1, step_group2, step_group3]