Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 5 měsíci
před 5 měsíci
před 5 měsíci
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. CHAMPI
  2. ==============================
  3. ## 🍄 Reconnaissance de champignons 🍄
  4. **Projet de groupe 2024 DataScientest**
  5. * [Heuzef](https://heuzef.com)
  6. * [Yvan Rolland](https://github.com/YvanRLD)
  7. * [Viktoriia Saveleva](https://github.com/SavelevaV)
  8. * [Florent Constant](https://github.com/FConstantMovework)
  9. Organisation du projet
  10. ------------
  11. ```
  12. ├── LICENSE
  13. ├── README.md
  14. ├── data <- (in .gitignore)
  15. │   ├── processed <- The final, canonical data sets for modeling.
  16. │   └── raw <- The original, immutable data dump.
  17. ├── models <- Trained and serialized models, model predictions, or model summaries
  18. ├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering),
  19. │ the creator's name, and a short `-` delimited description, e.g.
  20. │ `1.0-alban-data-exploration`.
  21. ├── references <- Data dictionaries, manuals, links, and all other explanatory materials.
  22. ├── reports <- Project reports as PDF
  23. │   └── figures <- Generated graphics and figures used in reporting
  24. ├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g.
  25. │ generated with `pip freeze > requirements.txt`
  26. ├── src <- Source code for use in this project.
  27. │   ├── __init__.py <- Makes src a Python module
  28. │ │
  29. │   ├── features <- Scripts to turn raw data into features for modeling
  30. │   │   └── build_features.py
  31. │ │
  32. │   ├── models <- Scripts to train models and then use trained models to make
  33. │ │ │ predictions
  34. │   │   ├── predict_model.py
  35. │   │   └── train_model.py
  36. │ │
  37. │   ├── visualization <- Scripts to create exploratory and results oriented visualizations
  38. │   │ └── visualize.py
  39. ```