We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26466d3 commit 0127d84Copy full SHA for 0127d84
engine/controllers/models.cc
@@ -204,10 +204,11 @@ void Models::ListModel(
204
obj["id"] = model_entry.model;
205
obj["model"] = model_entry.model;
206
obj["status"] = "downloaded";
207
- auto es = model_service_->GetEstimation(model_entry.model);
208
- if (es.has_value() && !!es.value()) {
209
- obj["recommendation"] = hardware::ToJson(*(es.value()));
210
- }
+ // TODO(sang) Temporarily remove this estimation
+ // auto es = model_service_->GetEstimation(model_entry.model);
+ // if (es.has_value() && !!es.value()) {
+ // obj["recommendation"] = hardware::ToJson(*(es.value()));
211
+ // }
212
data.append(std::move(obj));
213
yaml_handler.Reset();
214
} else if (model_config.engine == kPythonEngine) {
0 commit comments