from predictops.engine import Engine
-from predictops.learn.preprocessing import Preprocessing
-from predictops.target.toarea import ToArea
from logging import getLogger
from logging.config import fileConfig
from pathlib import Path
-import geopandas as gpd
fileConfig((Path.cwd() / 'config') / 'logging.cfg')
logger = getLogger()
engine = Engine(config_file = config)
engine.add_features()
- #print(engine.X)
- process = Preprocessing(config_file = config, dict_features = engine.X)
+ engine.add_target()
+ engine.add_preprocessing()
- #print(engine.X[datetime.strptime('06/30/2010 21:00:00', '%m/%d/%Y %H:%M:%S')])
- print(process.dataframe.head(n=20))
- print(process.dataframe.tail(n=20))
- exit()
+
+ '''target = toarea(stream_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv')
depts = gpd.read_file( Path.cwd() / 'data' / 'targets' / 'departments' / "departements-20180101.shp")
Doubs = depts.loc[depts['nom'] == 'Doubs'].iloc[0]
ToArea(area=Doubs.geometry,
- start = start, end = end,
csv_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv')
-
+ '''