Spaces:
Sleeping
Sleeping
| """ | |
| Generate Enhanced Telecommunications Data | |
| Run this script to create all enhanced datasets | |
| """ | |
| import sys | |
| import os | |
| # Add src to path | |
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src', 'utils')) | |
| from enhanced_data_generator import main | |
| if __name__ == "__main__": | |
| main() | |