ikki407 / stacking

Stacked Generalization (Ensemble Learning)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Efficient PATH setting problem

ikki407 opened this issue · comments

Now path is defined using slash / like

PATH = "foo/"
PATH + 'hoge'

, but it seems good to use os.path.join like

import os

PATH = "foo"
os.path.join(PATH, 'hoge')