ikram commited on
Commit
abcef12
Β·
1 Parent(s): 7a05c5f

Initial commit

Browse files
Visualisation/__pycache__/app.cpython-39.pyc CHANGED
Binary files a/Visualisation/__pycache__/app.cpython-39.pyc and b/Visualisation/__pycache__/app.cpython-39.pyc differ
 
Visualisation/app.py CHANGED
@@ -8,9 +8,10 @@ from transformers import pipeline, AutoModelForSeq2SeqLM, AutoTokenizer
8
  app = FastAPI()
9
 
10
  # βœ… Load Hugging Face models dynamically from the internet
11
- code_generator = pipeline("text-generation", model="bigcode/starcoder",times_out=1000)
12
- user_input_processor = pipeline("text-generation", model="tiiuae/falcon-7b-instruct") # comprend lsngusge naturel
13
  table_analyzer = pipeline("table-question-answering", model="google/tapas-large")
 
 
14
  #image_captioner = pipeline("image-to-text", model="Salesforce/blip2-opt-2.7b")
15
 
16
  # βœ… Load T5 Model (ensure correct architecture)
 
8
  app = FastAPI()
9
 
10
  # βœ… Load Hugging Face models dynamically from the internet
11
+ #code_generator =pipeline("text-generation", model="codellama/CodeLlama-7b-Python")
 
12
  table_analyzer = pipeline("table-question-answering", model="google/tapas-large")
13
+ user_input_processor = pipeline("text-generation", model="tiiuae/falcon-7b-instruct") # comprend lsngusge naturel
14
+
15
  #image_captioner = pipeline("image-to-text", model="Salesforce/blip2-opt-2.7b")
16
 
17
  # βœ… Load T5 Model (ensure correct architecture)