diff --git a/models/user_config.py b/models/user_config.py index fc0e2842cf66646ddfc18031d5dd809de6b81cad..3380d478901d3b217a9463587ebf22feee37d526 100644 --- a/models/user_config.py +++ b/models/user_config.py @@ -1,6 +1,6 @@ # Importing DummyModel from the models package. # The DummyModel class is located in the dummy_model.py file inside the 'models' directory. -from models.dummy_model import DummyModel, Vicuna2ZeroShot +from models.dummy_model import DummyModel # This line establishes an alias for the DummyModel class to be used within this script. # Instead of directly using DummyModel everywhere in the code, we're assigning it to 'UserModel'. @@ -19,5 +19,3 @@ UserModel = DummyModel # # UserModel = YourModel -# For example, you can try the Vicuna2ZeroShot baseline by uncommenting the following line. -# UserModel = Vicuna2ZeroShot