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.4 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
77
78
79
80
81
82
  1. [tool.poetry]
  2. name = "github-search"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Jakub 'lambdaofgod' Bartczuk <bartczukkuba@gmail.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = ">=3.10,<3.12"
  9. scikit-learn = "^1.3.1"
  10. nltk = "^3.8.1"
  11. bs4 = "^0.0.1"
  12. markdown = "^3.5"
  13. attrs = "^23.1.0"
  14. markdown2 = "^2.4.10"
  15. #umap-learn = "^0.5.4"
  16. stop-words = "^2018.7.23"
  17. docstring-parser = "^0.15"
  18. rank-bm25 = "^0.2.1"
  19. poethepoet = "^0.24.4"
  20. six = "^1.16.0"
  21. returns = "^0.22.0"
  22. pandera = "^0.17.2"
  23. ploomber = "^0.23.0"
  24. astunparse = "^1.6.3"
  25. csrgraph = "^0.1.28"
  26. igraph = "^0.11.3"
  27. nodevectors = "^0.1.23"
  28. polars = "^0.19.15"
  29. pandas-parallel-apply = "^2.2"
  30. h5py = "^3.10.0"
  31. livelossplot = "^0.5.5"
  32. torch = "^2.1.1"
  33. bounter = "^1.2.0"
  34. mlutil = {git = "https://github.com/lambdaofgod/mlutil"}
  35. mlutil-rust = {git = "https://github.com/lambdaofgod/mlutil_rust.git"}
  36. findkit = {git= "https://github.com/lambdaofgod/findkit.git"}
  37. paperswithcode = {git = "https://github.com/lambdaofgod/paperswithcode-client.git"}
  38. bert-score = "^0.3.13"
  39. seaborn = "^0.13.0"
  40. statsmodels = "^0.14.0"
  41. seaborn-qqplot = "^0.5.0"
  42. beir = "^2.0.0"
  43. dowhy = "^0.11.1"
  44. scikit-plot = "^0.3.7"
  45. faiss-gpu = "1.7.2"
  46. ninja = "^1.11.1.1"
  47. pip = "^24.0"
  48. sklearn-hierarchical-classification = "^1.3.2"
  49. jiwer = "^3.0.3"
  50. mlflow = "^2.11.2"
  51. scipy = "1.10.1"
  52. fire = "^0.6.0"
  53. dspy-ai = "^2.4.5"
  54. toolz = "^0.12.1"
  55. comment-parser = "^1.2.4"
  56. arize-phoenix = "^3.22.0"
  57. openinference-instrumentation-dspy = "^0.1.6"
  58. opentelemetry-exporter-otlp = "^1.24.0"
  59. [tool.poetry.group.dev.dependencies]
  60. torch-geometric = "^2.4.0"
  61. fastai = "^2.7.13"
  62. neptune = "^1.8.5"
  63. black = "^23.11.0"
  64. ipdb = "^0.13.13"
  65. ipykernel = "^6.27.1"
  66. faiss-gpu = "^1.7.2"
  67. [build-system]
  68. requires = ["poetry-core"]
  69. build-backend = "poetry.core.masonry.api"
  70. [tool.poe.tasks.generation_pipeline]
  71. # example
  72. # poetry run poe generation_pipeline --sampling small --generation_method api_lmserver --prompting_method few_shot_markdown
  73. script = "github_search.pipelines.pipeline:run_generation(sampling, generation_method, prompting_method)"
  74. args = ["sampling", "generation_method", "prompting_method"]
  75. [tool.poe.tasks.metrics_pipeline]
  76. script = "github_search.pipelines.pipeline:metrics_pipeline(paperswithcode_path='output/paperswithcode_with_readmes.json.gz', ir_config_path='conf/pipeline/ir_config.yaml',embedder_config_path='conf/pipeline/retrieval.yaml',column_config_path='conf/pipeline/column_configs.yaml')"
Tip!

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

Comments

Loading...