Skip to content

Commit 7d9c9ee

Browse files
Move CePO into its own directory
1 parent 92877dc commit 7d9c9ee

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

optillm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from optillm.plansearch import plansearch
3030
from optillm.leap import leap
3131
from optillm.reread import re2_approach
32-
from optillm.cepo import cepo, CepoConfig, init_cepo_config
32+
from optillm.cepo.cepo import cepo, CepoConfig, init_cepo_config
3333

3434
# Setup logging
3535
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
@@ -706,7 +706,7 @@ def parse_args():
706706
for field in fields(CepoConfig):
707707
parser.add_argument(f"--cepo_{field.name}", dest=f"cepo_{field.name}", type=field.type, default=None, help=f"CePO configuration for {field.name}")
708708

709-
parser.add_argument(f"--cepo_config_file", dest=f"cepo_config_file", type=str, default="./configs/cepo_config.yaml", help="Path to CePO configuration file")
709+
parser.add_argument(f"--cepo_config_file", dest=f"cepo_config_file", type=str, default="./optillm/cepo/configs/cepo_config.yaml", help="Path to CePO configuration file")
710710

711711
args = parser.parse_args()
712712

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)