File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
quantum-ai-arbitration/config Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ # Testing environment configuration for the Quantum and AI Arbitration Project
2+
3+ # General settings
4+ app :
5+ name : " Quantum and AI Arbitration"
6+ version : " 1.0.0"
7+ debug : true # Enable debug mode for detailed logging during testing
8+
9+ # Database configuration
10+ database :
11+ uri : " sqlite:///testing.db" # Use SQLite for testing to keep it lightweight
12+ max_connections : 5 # Maximum number of database connections
13+
14+ # Quantum settings
15+ quantum :
16+ backend : " qasm_simulator" # Use the QASM simulator for testing
17+ shots : 512 # Number of shots for quantum simulations during testing
18+
19+ # AI Model settings
20+ ai :
21+ model_path : " ./models/testing_model.pkl" # Path to the testing model
22+ threshold : 0.5 # Threshold for predictions during testing
23+
24+ # Logging configuration
25+ logging :
26+ level : " DEBUG" # Set logging level to DEBUG for detailed output
27+ file : " ./logs/testing.log" # Log file path for testing logs
28+ format : " %(asctime)s - %(levelname)s - %(message)s" # Log format
29+
30+ # Fraud detection settings
31+ fraud_detection :
32+ model_path : " ./models/fraud_detection_model_test.pkl" # Path to the fraud detection model for testing
33+
34+ # Risk assessment settings
35+ risk_assessment :
36+ model_path : " ./models/risk_assessment_model_test.pkl" # Path to the risk assessment model for testing
37+
38+ # Additional settings can be added as needed
You can’t perform that action at this time.
0 commit comments