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 1.7 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
  1. [tool.poetry]
  2. name = "napovedna-storitev"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["jernej10 <jernej.ofic@gmail.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.12"
  9. scikit-learn = "^1.4.1.post1"
  10. pandas = "^2.2.1"
  11. pytest = "^8.1.1"
  12. requests = "^2.31.0"
  13. pydantic = "^2.6.3"
  14. matplotlib = "^3.8.3"
  15. seaborn = "^0.13.2"
  16. tensorflow = "^2.15.0.post1"
  17. uvicorn = { extras = ["standard"], version = "^0.29.0" }
  18. fastapi = "^0.110.0"
  19. great-expectations = "^0.18.12"
  20. evidently = "^0.4.19"
  21. mlflow = "^2.12.1"
  22. dagshub = "^0.3.25"
  23. tf2onnx = "^1.16.1"
  24. onnxruntime = "^1.17.3"
  25. tensorflow-model-optimization = "^0.8.0"
  26. tf-keras = "^2.16.0"
  27. sqlalchemy = "^2.0.29"
  28. pyopenssl = "^24.0.0"
  29. cryptography = "41.0.5"
  30. pydantic-settings = "^2.2.1"
  31. [tool.poetry.group.dev.dependencies]
  32. jupyter = "^1.0.0"
  33. poethepoet = "^0.25.0"
  34. pytest = "^8.1.1"
  35. ruff = "^0.3.2"
  36. black = "^24.4.0"
  37. [tool.poetry.group.win-dev.dependencies]
  38. tensorflow-intel = "^2.16.1"
  39. [build-system]
  40. requires = ["poetry-core"]
  41. build-backend = "poetry.core.masonry.api"
  42. [tool.poe.tasks]
  43. fetch-bike-data = "python3 -m src.data.fetch_bike_data"
  44. fetch-weather-data = "python3 -m src.data.fetch_weather_data"
  45. process = "python3 -m src.data.process_data"
  46. test = "pytest"
  47. test-remote-api = "pytest src/serve/tests/remote_api_test.py"
  48. serve = "uvicorn src.serve.main:app --reload --port 8000"
  49. validate = "python3 -m src.data.run_checkpoint"
  50. data_drift = "python3 -m src.data.data_drift"
  51. stability_tests = "python3 -m src.data.stability_tests"
  52. ks_test = "python3 -m src.data.ks"
  53. split_data = "python3 -m src.data.split_data"
  54. train_validation = "python3 -m src.models.train_validation_model"
  55. predict_validation = "python3 -m src.models.predict_validation_model"
  56. validate_predictions = "python3 -m src.data.validate_predictions"
Tip!

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

Comments

Loading...