IlyasMoutawwakil HF staff commited on
Commit
f43498c
1 Parent(s): 049539c

enable numactl by default

Browse files
Files changed (1) hide show
  1. config_store.py +2 -2
config_store.py CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
4
  def get_process_config():
5
  return {
6
  "process.numactl": gr.Checkbox(
7
- value=False,
8
  label="process.numactl",
9
  info="Runs the model with numactl",
10
  ),
@@ -48,7 +48,7 @@ def get_inference_config():
48
  info="Measures the latency of the model",
49
  ),
50
  "inference.memory": gr.Checkbox(
51
- value=False,
52
  label="inference.memory",
53
  info="Measures the peak memory consumption",
54
  ),
 
4
  def get_process_config():
5
  return {
6
  "process.numactl": gr.Checkbox(
7
+ value=True,
8
  label="process.numactl",
9
  info="Runs the model with numactl",
10
  ),
 
48
  info="Measures the latency of the model",
49
  ),
50
  "inference.memory": gr.Checkbox(
51
+ value=True,
52
  label="inference.memory",
53
  info="Measures the peak memory consumption",
54
  ),