Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -95,12 +95,6 @@ class ModelConverter:
|
|
95 |
def convert_model(self, input_model_id: str) -> Tuple[bool, Optional[str]]:
|
96 |
"""Convert the model to ONNX format."""
|
97 |
try:
|
98 |
-
# Ensure accelerate is installed for weight deduplication
|
99 |
-
subprocess.run(
|
100 |
-
[sys.executable, "-m", "pip", "install", "accelerate"],
|
101 |
-
check=True,
|
102 |
-
)
|
103 |
-
|
104 |
result = subprocess.run(
|
105 |
[
|
106 |
sys.executable,
|
|
|
95 |
def convert_model(self, input_model_id: str) -> Tuple[bool, Optional[str]]:
|
96 |
"""Convert the model to ONNX format."""
|
97 |
try:
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
result = subprocess.run(
|
99 |
[
|
100 |
sys.executable,
|