File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ pip install -r requirements.txt
6666Execute the unit test suite to verify system integrity:
6767
6868``` bash
69- python test_core .py
69+ python -m unittest discover -s tests -p " test_* .py"
7070```
7171
7272## Usage
@@ -200,7 +200,7 @@ The project includes automated testing via GitHub Actions. The CI pipeline perfo
200200Test execution:
201201
202202``` bash
203- python -m unittest discover -s . -p " test_*.py"
203+ python -m unittest discover -s tests -p " test_*.py"
204204```
205205
206206## Technical Highlights
@@ -230,13 +230,15 @@ Statistical confidence intervals enable risk assessment in network slicing decis
230230│ ├── data_loader.py # Data generation and preprocessing
231231│ ├── lstm_model.py # LSTM architecture definition
232232│ └── trainer.py # Training and evaluation logic
233+ ├── tests/
234+ │ ├── __init__.py
235+ │ └── test_core.py # Unit test suite
233236├── models/ # Model artifacts (generated)
234237├── reports/ # Visualizations (generated)
235238├── notebooks/
236239│ └── research_analysis.ipynb
237240├── main.py # Training pipeline entry point
238241├── dashboard.py # Streamlit dashboard
239- ├── test_core.py # Unit test suite
240242├── requirements.txt # Python dependencies
241243├── Dockerfile # Container configuration
242244└── README.md # This file
You can’t perform that action at this time.
0 commit comments