dcrey7 commited on
Commit
2b0cef4
·
1 Parent(s): c7a66d3

fix: remove ml_challenge.txt from tracking

Browse files

Add to .gitignore to prevent accidental commits.

Files changed (2) hide show
  1. .gitignore +1 -0
  2. ml_challenge.txt +0 -36
.gitignore CHANGED
@@ -33,6 +33,7 @@ venv/
33
 
34
  # ---- Working notes (not part of the deliverable) ----
35
  updates/
 
36
 
37
  # ---- Reference repos (downloaded for research, not part of project) ----
38
  explore.data.gouv.fr/
 
33
 
34
  # ---- Working notes (not part of the deliverable) ----
35
  updates/
36
+ ml_challenge.txt
37
 
38
  # ---- Reference repos (downloaded for research, not part of project) ----
39
  explore.data.gouv.fr/
ml_challenge.txt DELETED
@@ -1,36 +0,0 @@
1
- MLE Challenge
2
- Context
3
- You are analysing residential property prices in France, you have at your disposal the public recent transactions on (https://www.data.gouv.fr/datasets/demandes-de-valeurs-foncieres/) to estimate the current market price as price per squared meter (€/m²)
4
- Objective
5
- You need to generate an interactive map visualization for the aggregated price data by :
6
- Country
7
- Region
8
- Departament
9
- Neighborhood
10
- Postcode
11
- Building plots
12
-
13
- You need to procure yourself with open data from the french government for such geometries and take care of cleaning the data to make accurate aggregates.
14
- You are asked to make the best estimation of the market price taking into account, transaction price volatility, transaction volume, data freshness and consistency. You can estimate a number for the price or an interval.
15
- You can use this one as a reference https://explore.data.gouv.fr/fr/immobilier
16
-
17
- You need to render an interactive map that shows the price aggregate with colors, as the level zooms, it needs to transition between aggregation levels. (Link to hosted app, optional but preferred)
18
- If the volume of data is too important for the browser to support all you can subset it, but a solution for this will be appreciated.
19
- Produce a list of market price per square meter by property type for the top 10 biggest cities.
20
- Submit your processing code. (Link to github repo)
21
- What you will be evaluated on
22
- Is the colored map loading ?
23
- Is the map usable and not laggy ?
24
- Is the map refreshing the aggregation level on zoom ?
25
- Are all 6 aggregation levels present ?
26
- Country
27
- Region
28
- Departament
29
- Neighborhood
30
- Postcode
31
- Building plots
32
- Are the price estimates plausible ?
33
- Is the data complete or was it subset ?
34
- The processing code is clean, clear and reusable
35
- The architecture is robust and logical
36
- App is hosted and functional