Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1. Introduction

  • In this use case, we utilize the "Cell Metrics"(RRU.PrbUsedDl) dataset provided by the O-RAN SC SIM space, which includes synthetic data generated by a simulator, with all data recorded in Unix timestamp format.

  • The model training process is carried out on the O-RAN SC AI/ML Framework, including GPU support, and considers both traditional machine learning (ML) and deep learning (DL) approaches. For ML models, we use Random Forest and Support Vector Regression (SVR), while for DL models, we employ RNN, LSTM, and GRU architectures.

  • By managing the ON/OFF state of cells through traffic forecasting, we can reduce power consumption. Additionally, if the AI/ML models used for forecasting are operated in an eco-friendly manner, further power savings can be achieved. In this use case, we measure the carbon emissions and energy consumption during the cell traffic forecasting process using AI/ML to ensure that the forecasting model is not only effective but also environmentally sustainable.

...

  • CellReports.csv
    The file contains traffic data from Viavi.

  • View file
    nameinsert.py

    The file processes the dataset and inserts the data into InfluxDB.
    (Changed required: DATASET_PATH , INFLUX_IP , INFLUX_TOKEN)

  • View file
    namepipeline.ipynb

    The file defines the model structure and training process.

  • View file
    namedeploy.yaml

    The yaml file is used for deploying model inference service.

  • View file
    namepredict.sh

    The script used for excuting the model prediction.

  • View file
    nameinput.json

    The json file is used for Inference.

5. Example

  • Input data

Code Block

  • output data

Code Block
"predictions": [[1.87332869], [1.91417336], [0.348406911], [0.607577682], 
[1.88934326], [1.98845983], [1.89937615], [1.74473524], [1.96166563], 
[2.02938437], [1.80582476], [1.93089557], [1.82921791], [1.25594974], 
[0.942011893], [1.86683917], [0.336141407], [1.73299193], [0.831858873], 
[0.389349937], [0.482014239], [1.81820059], [1.92650104], [1.6451056], 
[1.99126577], [1.89580131], [2.00482678], [1.82429934], [1.8287394], 
[1.78468418], [1.86079311], [0.384998083], [1.85713887], [1.56870174], 
[1.80646992], [1.8532176], [1.86798143], [1.48708344], [0.502655208], 
[0.692830265], [1.35089064], [0.512491345]
    ]

Contributors

  • Peter Moonki Hong - Samsung

  • Taewan Kim - Samsung

  • Corbin(Geon) Kim - Kyunghee Univ. MCL

  • Sungjin Lee - Kyunghee Univ. MCL

  • Hyuksun Kwon - Kyunghee Univ. MCL

  • Hoseong Choi - Kyunghee Univ. MCL

...