Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 2.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  1. [tool.poetry]
  2. name = "mbajk-forecast"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Matevz <semprimoznik.matevz@gmail.com>"]
  6. readme = "README.md"
  7. [tool.poe.tasks]
  8. fetch-bike-data = "python -m src.data.scripts.fetch_bike_data"
  9. fetch-weather-data = "python -m src.data.scripts.fetch_weather_data"
  10. process-data = "python -m src.data.scripts.process_data"
  11. prepare-validation-data = "python -m src.data.validation_scripts.prepare_validation_data"
  12. validate-data = "python -m src.data.validation_scripts.validate_data"
  13. data-drift = "python -m src.data.validation_scripts.data_drift"
  14. data-stability-test = "python -m src.data.validation_scripts.stability_test"
  15. ks-test = "python -m src.data.validation_scripts.ks"
  16. split-data = "python -m src.data.scripts.split_data"
  17. serve = "uvicorn src.serve.main:app --reload --port 8000"
  18. test = "pytest"
  19. test-data-api = "pytest src/tests/api_tests.py"
  20. train-models = "python -m src.models.scripts.train_models"
  21. download-models = "python -m src.models.scripts.download_models"
  22. evaluate-models = "python -m src.models.scripts.evaluate_models"
  23. evaluate-predictions = "python -m src.data.scripts.evaluate_predictions"
  24. [tool.poetry.dependencies]
  25. python = "^3.12"
  26. pandas = "^2.2.1"
  27. scikit-learn = "^1.4.1.post1"
  28. numpy = "^1.26.4"
  29. seaborn = "^0.13.2"
  30. scipy = "^1.12.0"
  31. fastapi = "^0.110.0"
  32. requests = "^2.31.0"
  33. joblib = "^1.3.2"
  34. tensorflow = {version = "^2.16.1" }
  35. keras = "^3.0.5"
  36. xgboost = "^2.0.3"
  37. uvicorn = "^0.29.0"
  38. pydantic-settings = "^2.2.1"
  39. python-dotenv = "^1.0.1"
  40. pydantic = "^2.6.4"
  41. great-expectations = "^0.18.12"
  42. evidently = "^0.4.19"
  43. mlflow = "^2.12.1"
  44. dagshub = "^0.3.26"
  45. tf2onnx = "^1.16.1"
  46. onnxruntime = "^1.17.3"
  47. pymongo = {extras = ["srv"], version = "^4.7.1"}
  48. [tool.poetry.group.dev.dependencies]
  49. jupyter = "^1.0.0"
  50. poethepoet = "^0.25.0"
  51. pytest = "^8.1.1"
  52. ruff = "^0.3.2"
  53. dvc-s3 = "^3.1.0"
  54. black = "^24.4.0"
  55. dvc = "^3.50.0"
  56. [tool.poetry.group.win-dev]
  57. optional = true
  58. [tool.poetry.group.win-dev.dependencies]
  59. tensorflow-intel = "^2.16.1"
  60. [build-system]
  61. requires = ["poetry-core"]
  62. build-backend = "poetry.core.masonry.api"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...