forked from p7px8vou9/AI_learning
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
class: "GradeClassifierTest"
|
|
solver_module: "solvers"
|
|
solver_class: "MinibatchStochasticGradientDescentSolver"
|
|
iterations: "1000"
|
|
learning_rate: "0.01"
|
|
momentum: "0.9"
|
|
shuffle: "True"
|
|
batch_size: "32"
|
|
|
|
model_module: "models"
|
|
model_class: "SoftmaxRegressionModel"
|
|
init_param_values_fname_or_function: ""
|
|
|
|
dataset: "largeMnistDataset"
|
|
feature_extractor: "enhancedFeatureExtractor"
|
|
|
|
# our test accuracy using basicFeatureExtractor: 87.0%
|
|
# our test accuracy using enhancedFeatureExtractor: 89.1%
|
|
accuracy_threshold: "88.0"
|
|
|
|
max_points: "4"
|
|
|