mmaaz60 commited on
Commit
bae0eaf
1 Parent(s): e57003b

Fixes the transformers version

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,11 +1,11 @@
1
- # Execute the pip install command with additional options
2
- subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'git+https://github.com/huggingface/transformers@a98c41798cf6ed99e1ff17e3792d6e06a2ff2ff3', '-U'])
3
-
4
  import sys
5
  import os
6
  import argparse
7
  import time
8
- import subprocess
 
 
9
 
10
  import llava.serve.gradio_web_server as gws
11
 
 
1
+ import subprocess
 
 
2
  import sys
3
  import os
4
  import argparse
5
  import time
6
+
7
+ # Execute the pip install command with additional options
8
+ subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'git+https://github.com/huggingface/transformers@a98c41798cf6ed99e1ff17e3792d6e06a2ff2ff3', '-U'])
9
 
10
  import llava.serve.gradio_web_server as gws
11