Skip to content

Commit

Permalink
Create models.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 15, 2024
1 parent c13bfdc commit 133da98
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions quantum_models/models.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export default {
quantum_neural_network: {
architecture: 'feedforward',
num_layers: 5
},
quantum_support_vector_machine: {
kernel: 'gaussian',
regularization: 0.1
},
quantum_kmeans: {
num_clusters: 10,
distance_metric: 'euclidean'
},
quantum_regression: {
algorithm: 'least_squares',
num_iterations: 1000
}
};

0 comments on commit 133da98

Please sign in to comment.