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.8 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
  1. [tool.poetry]
  2. name = "mbajk-ml-web-service"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["perkzen <perko.domen@gmail.com>"]
  6. readme = "README.md"
  7. [tool.poe.tasks]
  8. serve = "uvicorn src.serve.main:app --reload"
  9. fetch_bike_data = "python3 -m src.data.scripts.fetch_bike_stations"
  10. fetch_weather_data = "python3 -m src.data.scripts.fetch_weather"
  11. split_data = "python3 -m src.data.scripts.split_data"
  12. process = "python3 -m src.data.scripts.process_data"
  13. train = "python3 -m src.models.scripts.train_model"
  14. predict = "python3 -m src.models.scripts.predict_model"
  15. download_models = "python3 -m src.models.scripts.download_models"
  16. ks_test = "python3 -m src.validation.ks"
  17. validate = "python3 -m src.validation.run_checkpoint"
  18. data_drift = "python3 -m src.validation.data_drift"
  19. stability_tests = "python3 -m src.validation.stability_tests"
  20. validate_predictions = "python3 -m src.validation.validate_predictions"
  21. test = "pytest"
  22. test_job = "pytest src/tests/api_availability_test.py"
  23. lint = "ruff check ."
  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. tensorflow = "^2.15.0"
  31. scipy = "^1.12.0"
  32. fastapi = "^0.110.0"
  33. uvicorn = { extras = ["standard"], version = "^0.28.0" }
  34. requests = "^2.31.0"
  35. joblib = "^1.3.2"
  36. pydantic-settings = "^2.2.1"
  37. python-dotenv = "^1.0.1"
  38. great-expectations = "^0.18.12"
  39. evidently = "^0.4.19"
  40. mlflow = "^2.11.3"
  41. dagshub = "^0.3.24"
  42. sqlalchemy = "^2.0.29"
  43. tf2onnx = "^1.16.1"
  44. onnxruntime = "^1.17.3"
  45. tf-keras = "^2.16.0"
  46. tensorflow-model-optimization = "^0.8.0"
  47. cachetools = "^5.3.3"
  48. psycopg2-binary = "^2.9.9"
  49. [tool.poetry.group.dev.dependencies]
  50. jupyter = "^1.0.0"
  51. poethepoet = "^0.25.0"
  52. pytest = "^8.1.1"
  53. ruff = "^0.3.2"
  54. black = "^24.4.0"
  55. [build-system]
  56. requires = ["poetry-core"]
  57. 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...