]> AND Private Git Repository - predictops.git/blob - main.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Refactoring, fin du lever/coucher de soleil, et début de sentinelles
[predictops.git] / main.py
1 from predictops.engine import Engine
2
3 from logging import getLogger
4 from logging.config import fileConfig
5 from pathlib import Path
6
7
8 fileConfig((Path.cwd() / 'config') / 'logging.cfg')
9 logger = getLogger()
10
11 if __name__ == '__main__':
12
13     config = (Path.cwd() / 'config') / 'learn.cfg'
14     with Engine(config_file = config) as e:
15         e.add_features()
16         e.add_target()
17         e.add_preprocessing()
18         e.learn()
19
20     '''target = toarea(stream_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv')
21
22     depts = gpd.read_file( Path.cwd() / 'data' / 'targets' / 'departments' / "departements-20180101.shp")
23     Doubs = depts.loc[depts['nom'] == 'Doubs'].iloc[0]
24
25     ToArea(area=Doubs.geometry,
26            csv_file = Path.cwd() / 'data' / 'targets' / 'sdis25' / 'interventions.csv')
27     '''