Шукаєте відповіді та рішення тестів для Artificial Intelligence Methods (COMP2001 UNUK SPR) (COMP2011 UNUK SPR) (25-26)? Перегляньте нашу велику колекцію перевірених відповідей для Artificial Intelligence Methods (COMP2001 UNUK SPR) (COMP2011 UNUK SPR) (25-26) в moodle.nottingham.ac.uk.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
Within the project description, there was a minimum set of low-level heuristics to be implemented, and optionally at least three other heuristics. In the text box below, list each additional low-level heuristic that you implemented on a new line and state the corresponding class name and heuristic type. If you reimplemented a required heuristic but used a different neighbourhood, for example reinsertion instead of swap, then you should state this. If you did not implement additional heuristics, then you should leave this field blank.
For example:
Adjacent Swap (Mutation)Next Descent (Local search)Partially mapped crossover (Crossover)
Given the following permutation representation of a solution to some instance of the Open-top Bus Routing problem using an integer array <0,1,2,3,4,5,6,7,8,9> determine for each of the low-level heuristics that were required to be implemented and listed below whether the candidate solution <0,1,4,3,2,5,6,7,8,9> is:
...after calling the HyFlex API method applyHeuristic(int iHeuristicIndex, int iCurrentSolutionIndex, int iCandidateSolutionIndex) with an intensity of mutation of 0.3 and a depth of search of 0.3.
Please indicate what type of device you used to run your hyper-heuristic for solving the unseen instance. (We will use this to ensure there are no inconsistencies between devices).
You should run your selection hyper-heuristic implemented as part of your project to solve an unseen instance of the Open-top Bus Routing problem.
You should have already downloaded the unseen instance as part of the "Files required for practical test" archive. Locate the file "unseen-instance.obr" inside the instances folder and import it into your project, updating your code as required by your design so you can run your hyper-heuristic on this new instance.
You should run your hyper-heuristic on the unseen instance using:
After running your hyper-heuristic, report only the objective value of the best solution found below.
Warning: do not be tempted to enter an arbitrarily small value that is not a result of running your hyper-heuristic. Doing so constitutes academic misconduct under section "2.2.5 Fabrication or misrepresentation" of the policy. Anyone entering values which are less than the known lower bound may be asked to explain their result and risks invalidating their grade in part or in whole for this assessment.When designing and implementing your selection hyper-heuristic, you may have attempted to improve its performance by performing some form of experimentation.
Briefly explain (in two or three sentences):
If you did not attempt to improve the performance of the hyper-heuristic beyond your original implementation, then you must leave your answer blank.
In the textbox below, clearly state which heuristic selection mechanism and which move acceptance method you used when designing your submitted learning-based selection hyper-heuristic, and then briefly explain in one or two sentences how your heuristic selection method "learns" about the low-level heuristics and then "selects" which heuristic(s) to apply.
Given the following Open-top Bus Routing Problem (OBR) instance, calculate and state the objective value of the solution encoded by the following permutation representation: <2,0,1,3,4>.You should assume the location IDs are zero indexed in the order given in the instance; in other words, the point of interest with coordinate (0,1) has location ID 0.
NAME : understanding_instance
COMMENT : instance for the exam
BUS_DEPOT_LOCATION
-2 0
POINTS_OF_INTEREST
0 1
-1 1
-1 0
0 0
1 0
EOF
Before continuing with the following exercises, confirm that running your implementation of Iterated Local Search with the default experimental configuration yields the following plots. If it does not, check that you have updated your implementation of `DavissBitHillClimbing` to accept all non-worsening moves, if that still doesn't work, you may use the following reference implementation DavissBitHillClimbing.java (download link here). If that still doesn't work, please check your implementation of Iterated Local Search with a peer/friend/lab assistant!
By using your implementation of Iterated Local Search, and appropriately configuring the framework, find a configuration for iIntensityOfMutation (IOM) and iDepthOfSearch (DOS) such that Iterated Local Search performs better than DBHC alone when comparing their median performances for solving MAX-SAT instance 1 with a 10 second computational time budget.
For full context, here is the boxplot produced when running DBHC for 31 trials on MAX-SAT instance 1 given 10 seconds of runtime using the seed of -1414736884 ("hill climbing".hashcode()) from the previous lab exercise:
The results of the previous exercise may have surprised you.Disabling hill-climbing by setting DOS to 0 performs much better than any configuration with hill-climbing enabled. Reflect on the guidelines for designing Iterated Local Search algorithms discussed in lecture 3 and briefly explain in your own words why you think choosing SDHC as the hill-climbing operator is detrimental to the performance of ILS.