Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LogisticRegression model not achived #395

Open
5 tasks
KaiyiLiu1234 opened this issue Aug 21, 2024 · 2 comments
Open
5 tasks

LogisticRegression model not achived #395

KaiyiLiu1234 opened this issue Aug 21, 2024 · 2 comments
Labels
kind/bug Something isn't working

Comments

@KaiyiLiu1234
Copy link
Collaborator

What happened?

For Manual Metric Collection and Training with Entrypoint, all models produced appears to have an extracted folder and a zipped folder with the exception of LogisticRegression.

What did you expect to happen?

LogisticRegression should also have an archive.

How can we reproduce it (as minimally and precisely as possible)?

Run Manual Metric Collection and Training with Entrypoint and view rapl-sysfs.

Anything else we need to know?

No response

Kepler image tag

latest

Deployment

  • Model server
  • Estimator
  • Online trainer
  • Offline trainer
  • Profiler

Kepler model server image tag if deployed

Kepler estimator image tag if deployed

Kepler online trainer image tag if deployed

Kepler offline trainer image tag if deployed

Kepler profiler image tag if deployed

Kubernetes version

$ kubectl version
# paste output here

Install tools

Kepler deployment config

For on kubernetes:

$ KEPLER_NAMESPACE=kepler

# provide kepler configmap
$ kubectl get configmap kepler-cfm -n ${KEPLER_NAMESPACE} 
# paste output here

# provide kepler model server configmap if Kepler Model Server is deployed 
$ kubectl get configmap kepler-model-server-cfm -n ${KEPLER_NAMESPACE} 
# paste output here

# provide kepler deployment description
$ kubectl describe deployment kepler-exporter -n ${KEPLER_NAMESPACE} 

For standalone:

put your Kepler command argument here

@KaiyiLiu1234 KaiyiLiu1234 added the kind/bug Something isn't working label Aug 21, 2024
@sunya-ch
Copy link
Contributor

@KaiyiLiu1234
Have you checked the error threshold?
We have a condition to select only trained model that pass the error threshold here:

if row["mae"] > hard_threshold or row["mape"] > hard_threshold:
continue
if row["mape"] <= mape_threshold or row["mae"] <= mae_threshold:
model_name = row["model_name"]

@KaiyiLiu1234
Copy link
Collaborator Author

I see. I think LogisticRegression error is always too high.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants