Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/lightning_app/components/serve/python_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from pathlib import Path
from typing import Any, Dict, Optional

import torch
import uvicorn
from fastapi import FastAPI
from pydantic import BaseModel
Expand Down Expand Up @@ -105,7 +106,7 @@ def predict(self, request):
self._input_type = input_type
self._output_type = output_type

def setup(self) -> None:
def setup(self, *args, **kwargs) -> None:
"""This method is called before the server starts. Override this if you need to download the model or
initialize the weights, setting up pipelines etc.

Expand Down Expand Up @@ -154,7 +155,8 @@ def _attach_predict_fn(self, fastapi_app: FastAPI) -> None:
output_type: type = self.configure_output_type()

def predict_fn(request: input_type): # type: ignore
return self.predict(request)
with torch.inference_mode():
return self.predict(request)

fastapi_app.post("/predict", response_model=output_type)(predict_fn)

Expand Down Expand Up @@ -207,7 +209,7 @@ def run(self, *args: Any, **kwargs: Any) -> Any:

Normally, you don't need to override this method.
"""
self.setup()
self.setup(*args, **kwargs)

fastapi_app = FastAPI()
self._attach_predict_fn(fastapi_app)
Expand Down