From 7953273e289b3bf773538e13d8dee5a9730f145d Mon Sep 17 00:00:00 2001 From: andreii Date: Tue, 13 Feb 2024 12:55:14 -0800 Subject: [PATCH] Fixing a parser warning appearing in one of the `gcmc` examples. --- examples/pytorch/gcmc/data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/pytorch/gcmc/data.py b/examples/pytorch/gcmc/data.py index 903cf79bec6f..1c8e85950843 100644 --- a/examples/pytorch/gcmc/data.py +++ b/examples/pytorch/gcmc/data.py @@ -689,6 +689,7 @@ def _load_raw_movie_info(self): header=None, names=["id", "title", "genres"], encoding="iso-8859-1", + engine='python', ) genre_map = {ele: i for i, ele in enumerate(GENRES)} genre_map["Children's"] = genre_map["Children"]