Eladlev / AutoPrompt

A framework for prompt tuning using Intent-based Prompt Calibration
Apache License 2.0
1.87k stars 151 forks source link

Update base_dataset.py pandas append #6

Closed MatanFriedmann closed 6 months ago

MatanFriedmann commented 6 months ago

this removes a more serious future warning of a deprecated method in pandas

AutoPrompt/dataset/base_dataset.py:53: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  self.records = self.records.append(records, ignore_index=True)