Skip to content

Commit

Permalink
input fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsaveus committed Sep 10, 2024
1 parent d00d2a6 commit ba0bd21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def graph_post_handler(request: PredictionRequestPydantic):
# Load the featurizer
featurizer = SmilesGraphFeaturizer()
featurizer.load_json_rep(feat_config)
smiles = request.dataset["input"][0]["SMILES"]
smiles = request.dataset["input"][0]

def to_numpy(tensor):
return (
Expand Down

0 comments on commit ba0bd21

Please sign in to comment.