cjber commited on
Commit
ea5fd7c
·
0 Parent(s):
.envrc ADDED
@@ -0,0 +1 @@
 
 
1
+ source .venv/bin/activate
.gitignore ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ data/
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ *.py[cod]
6
+ *$py.class
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+ cover/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # PyBuilder
77
+ .pybuilder/
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
+
92
+ # pipenv
93
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96
+ # install all needed dependencies.
97
+ #Pipfile.lock
98
+
99
+ # poetry
100
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
101
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102
+ # commonly ignored for libraries.
103
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
104
+ #poetry.lock
105
+
106
+ # pdm
107
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
108
+ #pdm.lock
109
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
110
+ # in version control.
111
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
112
+ .pdm.toml
113
+ .pdm-python
114
+ .pdm-build/
115
+
116
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117
+ __pypackages__/
118
+
119
+ # Celery stuff
120
+ celerybeat-schedule
121
+ celerybeat.pid
122
+
123
+ # SageMath parsed files
124
+ *.sage.py
125
+
126
+ # Environments
127
+ .env
128
+ .venv
129
+ env/
130
+ venv/
131
+ ENV/
132
+ env.bak/
133
+ venv.bak/
134
+
135
+ # Spyder project settings
136
+ .spyderproject
137
+ .spyproject
138
+
139
+ # Rope project settings
140
+ .ropeproject
141
+
142
+ # mkdocs documentation
143
+ /site
144
+
145
+ # mypy
146
+ .mypy_cache/
147
+ .dmypy.json
148
+ dmypy.json
149
+
150
+ # Pyre type checker
151
+ .pyre/
152
+
153
+ # pytype static type analyzer
154
+ .pytype/
155
+
156
+ # Cython debug symbols
157
+ cython_debug/
158
+
159
+ # PyCharm
160
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
163
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
164
+ #.idea/
README.md ADDED
File without changes
pyproject.toml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "planning-ai"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10,<3.11"
7
+ dependencies = [
8
+ "langchain-core>=0.2.38",
9
+ "langchain-community>=0.2.16",
10
+ "langchain-unstructured>=0.1.2",
11
+ "transformers>=4.44.2",
12
+ "torch>=2.4.1",
13
+ "accelerate>=0.34.0",
14
+ "pillow>=10.4.0",
15
+ "flash-attn>=2.6.3",
16
+ ]
17
+
18
+ [tool.uv]
19
+ dev-dependencies = [
20
+ "ipdb>=0.13.13",
21
+ "ipython>=8.27.0",
22
+ ]
src/planning_ai/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ def hello() -> str:
2
+ return "Hello from planning-ai!"
src/planning_ai/loaders.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from langchain_unstructured import UnstructuredLoader
2
+
3
+ loader = UnstructuredLoader("./data/raw/pdfs/57693-94 Response Form.pdf")
4
+ loader.load()
src/planning_ai/phi.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ from PIL import Image
3
+ from transformers import AutoModelForCausalLM, AutoProcessor
4
+
5
+ model_id = "microsoft/Phi-3.5-vision-instruct"
6
+
7
+ # Note: set _attn_implementation='eager' if you don't have flash_attn installed
8
+ model = AutoModelForCausalLM.from_pretrained(
9
+ model_id,
10
+ device_map="cuda",
11
+ trust_remote_code=True,
12
+ torch_dtype="auto",
13
+ _attn_implementation="flash_attention_2",
14
+ )
15
+
16
+ # for best performance, use num_crops=4 for multi-frame, num_crops=16 for single-frame.
17
+ processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True, num_crops=4)
18
+
19
+ images = []
20
+ placeholder = ""
21
+
22
+ # Note: if OOM, you might consider reduce number of frames in this example.
23
+ path = "./data/raw/2024-09-05_10-46.png"
24
+ images.append(Image.open(requests.get(path, stream=True).raw))
25
+ placeholder += f"<|image_1|>\n"
26
+
27
+ messages = [
28
+ {"role": "user", "content": placeholder + "Summarize the deck of slides."},
29
+ ]
30
+
31
+ prompt = processor.tokenizer.apply_chat_template(
32
+ messages, tokenize=False, add_generation_prompt=True
33
+ )
34
+
35
+ inputs = processor(prompt, images, return_tensors="pt").to("cuda:0")
36
+
37
+ generation_args = {
38
+ "max_new_tokens": 1000,
39
+ "temperature": 0.0,
40
+ "do_sample": False,
41
+ }
42
+
43
+ generate_ids = model.generate(
44
+ **inputs, eos_token_id=processor.tokenizer.eos_token_id, **generation_args
45
+ )
46
+
47
+ # remove input tokens
48
+ generate_ids = generate_ids[:, inputs["input_ids"].shape[1] :]
49
+ response = processor.batch_decode(
50
+ generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False
51
+ )[0]
52
+
53
+ print(response)
uv.lock ADDED
The diff for this file is too large to render. See raw diff