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
  1. [tool.poetry]
  2. name = "intelligent-systems-engineering"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["sulcer <gregor.sulcer@student.um.si>"]
  6. readme = "README.md"
  7. [tool.poe.tasks]
  8. serve = "uvicorn src.serve.app.main:app --reload"
  9. fetch_data = "python3 -m src.data.fetch_data"
  10. process_data = "python3 -m src.data.process_data"
  11. test = "pytest"
  12. lint = "ruff check ."
  13. test_api = "pytest src/tests/api_test.py"
  14. validate = "python3 -m src.data.validation.run_checkpoint"
  15. data_drift = "python3 -m src.data.validation.data_drift"
  16. stability_tests = "python3 -m src.data.validation.stability_tests"
  17. split_data = "python3 -m src.data.validation.split_data"
  18. train_validation = "python3 -m src.models.train_validation_model"
  19. predict_validation = "python3 -m src.models.predict_validation_model"
  20. ks_test = "python3 -m src.data.validation.ks"
  21. train = "python3 -m src.models.train_model"
  22. predict = "python3 -m src.models.predict_model"
  23. download_models = "python3 -m src.models.download_models"
  24. validate_predictions = "python3 -m src.data.validation.validate_predictions"
  25. [tool.poetry.dependencies]
  26. python = "^3.12"
  27. pandas = "^2.2.1"
  28. scikit-learn = "^1.4.1.post1"
  29. fastapi = "^0.110.0"
  30. uvicorn = {extras = ["standard"], version = "^0.28.0"}
  31. pytest = "^8.1.1"
  32. jupyter = "^1.0.0"
  33. numpy = "^1.26.4"
  34. seaborn = "^0.13.2"
  35. tensorflow = "^2.15.0.post1"
  36. requests = "^2.31.0"
  37. scipy = "^1.12.0"
  38. poethepoet = "^0.25.0"
  39. pydantic-settings = "^2.2.1"
  40. great-expectations = "^0.18.12"
  41. evidently = "^0.4.19"
  42. mlflow = "^2.12.1"
  43. dagshub = "^0.3.24"
  44. tf2onnx = "^1.16.1"
  45. onnxruntime = "^1.17.3"
  46. tf-keras = "^2.16.0"
  47. tensorflow-model-optimization = "^0.8.0"
  48. cachetools = "^5.3.3"
  49. sqlalchemy = "^2.0.29"
  50. [tool.poetry.group.dev.dependencies]
  51. ruff = "^0.3.2"
  52. black = "^24.4.0"
  53. jupyter = "^1.0.0"
  54. [build-system]
  55. requires = ["poetry-core"]
  56. 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...