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.9 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
69
70
71
72
73
74
75
76
  1. [tool.poetry]
  2. name = "slide-generation"
  3. version = "0.1.0"
  4. description = "The public repository of the slide generation project."
  5. authors = ["Yoshiki Kubotani <yoshikikubotani.lab@gmail.com>"]
  6. license = "MIT"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = ">=3.8.1,<3.11"
  10. jaxlib = {version = "^0.3.25+cuda11.cudnn82", source = "jax-cuda"}
  11. jax = "^0.3.25"
  12. flax = "^0.6.2"
  13. hydra-core = "^1.2.0"
  14. wandb = "^0.13.5"
  15. tensorflow = "^2.11.0"
  16. transformers = "^4.25.1"
  17. nltk = "^3.8"
  18. scann = "^1.2.9"
  19. [tool.poetry.group.dev.dependencies]
  20. black = "^22.10.0"
  21. pytest-cov = "^4.0.0"
  22. isort = "^5.10.1"
  23. flake8 = "^6.0.0"
  24. mypy = "^0.991"
  25. mdformat-gfm = "^0.3.5"
  26. mdformat_frontmatter = "^0.4.1"
  27. mdformat_footnote = "^0.1.1"
  28. paddlepaddle-gpu = { url = "https://paddle-wheel.bj.bcebos.com/release/2.4/linux/linux-gpu-cuda11.2-cudnn8-mkl-gcc8.2-avx/paddlepaddle_gpu-2.4.1.post112-cp38-cp38-linux_x86_64.whl" }
  29. ipykernel = "^6.19.2"
  30. paddleocr = "^2.6.1.1"
  31. pdfplumber = "^0.7.6"
  32. [[tool.poetry.source]]
  33. name = "jax-cuda"
  34. url = "https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"
  35. default = false
  36. secondary = false
  37. [tool.black]
  38. line-length = 88
  39. [tool.isort]
  40. profile = "black"
  41. line_length = 88
  42. [tool.mypy]
  43. python_version = 3.8
  44. # following setting is same as pysen
  45. # https://github.com/pfnet/pysen/blob/main/setup.cfg#L12
  46. check_untyped_defs = true
  47. disallow_any_decorated = false
  48. disallow_any_generics = false
  49. disallow_any_unimported = false
  50. disallow_incomplete_defs = true
  51. disallow_subclassing_any = true
  52. disallow_untyped_calls = true
  53. disallow_untyped_decorators = false
  54. disallow_untyped_defs = true
  55. ignore_errors = false
  56. ignore_missing_imports = true
  57. no_implicit_optional = true
  58. show_error_codes = true
  59. strict_equality = true
  60. strict_optional = true
  61. warn_redundant_casts = true
  62. warn_return_any = true
  63. warn_unreachable = true
  64. warn_unused_configs = true
  65. warn_unused_ignores = true
  66. [build-system]
  67. requires = ["poetry-core"]
  68. 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...