X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/predictops.git/blobdiff_plain/f04d85cc8028a2721d7d5e8ec866ff8022797bb5..661ece8c54b20d4c559e5f73616cc213f8c4f6b7:/main.py diff --git a/main.py b/main.py index 969054c..27f502a 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,9 @@ from predictops.engine import Engine -from predictops.learn.preprocessing import Preprocessing 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() @@ -18,19 +16,15 @@ if __name__ == '__main__': engine.add_features() engine.add_target() - process = Preprocessing(config_file = config, dict_features = engine.X) + engine.add_preprocessing() - print(process.dataframe.head(n=20)) - print(process.dataframe.tail(n=20)) + engine.learn() - #target = toarea(stream_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv') - - - 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, csv_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv') - + '''