-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_ata_custom.jl
100 lines (82 loc) · 3.25 KB
/
settings_ata_custom.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Inputs = InputSettings(
# 1. T
[8, 8, 8],
# 2. n_items
Int(366),
# 3. n_groups
Int(3),
# 4. groups
["D", "C", "B"],
####################################################################
########################## IRT #####################################
####################################################################
# 5. irt_model
"1PL",
# 6. irt_parameters
["b"],
# 6. irt_parametrization
"at-ab",
# 7. irt_D
1,
####################################################################
######################FRIENDS AND ENEMIes###########################
####################################################################
# 8. enemy_sets_var
["ENEMY_SET"],
# 9. friend_sets_var
["UNIT"],
####################################################################
########################### ITEM USE ##############################
####################################################################
# 10. item_use_min
fill(0, 366),
# 11. item_use_max
fill(7, 366),
####################################################################
########################## TesT length #############################
####################################################################
# 12. length_min
[36, 36, 36],
# 13. length_max
[40, 40, 40],
# 14. length_weight
[1.0, 1.0, 1.0],
####################################################################
####################### EXPECTED SCORE #############################
####################################################################
# 15. expected_score_var
["PROP_CORR", "PROP_CORR", "PROP_CORR"],
# 16. expected_score_pts
[zeros(Float64, 1), zeros(Float64, 1), zeros(Float64, 1)],
# 17. expected_score_min
[[0.50], [0.50], [0.50]],
# 18. expected_score_max
[[0.57], [0.57], [0.57]],
####################################################################
###################### GENERIC CONSTRAINTS#################
####################################################################
# 19. mean_vars
Vector{Vector{String}}(undef, 0), # (future)
# 21. mean_vars_min
Vector{Vector{Float64}}(undef, 0), # (future)
# 21. mean_vars_max
Vector{Vector{Float64}}(undef, 0), # (future)
####################################################################
######################### OBJECTIVE ################################
####################################################################
# 22. obj_type
"custom", #"maximin", "minimax", "cc_maximin", "soyster_maximin", "de_jong_maximin", "custom" and "" objective types are supported.,
# 23. obj_points (required in MAXIMIN, CC, MINIMAX)
[[-0.60], [0.30], [0.60]],
# 24. obj_targets (required in MINIMAX)
Vector{Vector{Float64}}(),
# 25. obj_aux_int
zero(Float64),
# 26. obj_aux_float
0.05,
####################################################################
######################### OUTPUT ###################################
####################################################################
# 27. categories
["UNIT", "CAT_1", "CAT_2", "CAT_3", "CAT_4", "CAT_5_6", "CAT_5", "CAT_6"],
);