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 1006 B

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
  1. [build-system]
  2. requires = ["setuptools>=61.0"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "llava"
  6. version = "0.1.0"
  7. description = "Towards GPT-4 like large language and visual assistant."
  8. readme = "README.md"
  9. requires-python = ">=3.8"
  10. classifiers = [
  11. "Programming Language :: Python :: 3",
  12. "License :: OSI Approved :: Apache Software License",
  13. ]
  14. dependencies = [
  15. "accelerate", "fastapi", "gradio==3.23", "markdown2[all]", "numpy",
  16. "requests", "sentencepiece", "tokenizers==0.12.1",
  17. "torch", "torchvision", "uvicorn", "wandb",
  18. "transformers @ git+https://github.com/huggingface/transformers.git@cae78c46"
  19. ]
  20. [project.urls]
  21. "Homepage" = "https://github.com/microsoft/LLaVA-Med"
  22. "Bug Tracker" = "https://github.com/microsoft/LLaVA-Med/issues"
  23. [tool.setuptools.packages.find]
  24. exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
  25. [tool.wheel]
  26. exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
Tip!

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

Comments

Loading...