필터 지우기
필터 지우기

Prediction of full cycle using partial cycle data

조회 수: 9 (최근 30일)
K G V Kalyan Sreenivas Kumar
K G V Kalyan Sreenivas Kumar 2021년 5월 27일
편집: Ayush Anand 2024년 4월 5일
The cycle starts with 100% ends at 0 and is dependent on time and some other parameters. I have initial cycle data from 100% to 80% and by using this data I want to predict remaining data. Which algorithm should I use to predict the remaining data.
  댓글 수: 1
KALASH
KALASH 2024년 4월 4일
What exactly do you mean by cycle? Please share specific details about your model and what is does and what are you trying to achieve along with the dataset you are using to be able to help you further.

댓글을 달려면 로그인하십시오.

답변 (1개)

Ayush Anand
Ayush Anand 2024년 4월 5일
편집: Ayush Anand 2024년 4월 5일
Hi,
Predicting the remaining cycle data when you already have data for the initial part of the cycle can be approached through various time series forecasting and regression techniques. Here are some you could try out:
  1. Linear or Polynomial Regression:If the relationship between the cycle percentage and time (or other parameters) can be modeled linearly or as a polynomial, linear polynomial regression can be a good choice.
  2. Time Series Forecasting Models: If your data is time-dependent, considering time series forecasting models could be beneficial:
3. Other Machine Learning Models:
  • Gradient Boosting Machines (e.g., XGBoost, LightGBM): These build models in a stage-wise fashion and are good at handling various types of data, including nonlinear relationships.
  • Neural Networks: If your dataset is large and complex, deep learning models like LSTM (Long Short-Term Memory) networks or GRU (Gated Recurrent Units) can capture patterns effectively, especially in sequential data. These are particularly useful if the cycle's progression depends on long-term dependencies.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by