pahariaryan121 commited on
Commit
dd7ff72
·
1 Parent(s): beef7ac

Adding Files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .dvc/.gitignore +3 -0
  2. .dvc/config +4 -0
  3. .dvcignore +3 -0
  4. .gitattributes +0 -0
  5. .gitignore +3 -0
  6. Deployment/.gitignore +2 -0
  7. Deployment/__pycache__/app.cpython-310.pyc +0 -0
  8. Deployment/app.py +98 -0
  9. Deployment/streamlit/.gitignore +1 -0
  10. Deployment/streamlit/main.py +27 -0
  11. Deployment/test_api.py +31 -0
  12. Dockerfile +14 -0
  13. README.md +1 -1
  14. config.yaml +10 -0
  15. data/.gitignore +2 -0
  16. data/bronze.dvc +6 -0
  17. dvc.lock +20 -0
  18. dvc.yaml +27 -0
  19. mlruns/0/meta.yaml +6 -0
  20. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/meta.yaml +15 -0
  21. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.runName +1 -0
  22. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.git.commit +1 -0
  23. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.name +1 -0
  24. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.type +1 -0
  25. mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.user +1 -0
  26. mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/meta.yaml +15 -0
  27. mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.runName +1 -0
  28. mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.source.name +1 -0
  29. mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.source.type +1 -0
  30. mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.user +1 -0
  31. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/meta.yaml +15 -0
  32. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.runName +1 -0
  33. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.git.commit +1 -0
  34. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.name +1 -0
  35. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.type +1 -0
  36. mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.user +1 -0
  37. mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/meta.yaml +15 -0
  38. mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.runName +1 -0
  39. mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.source.name +1 -0
  40. mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.source.type +1 -0
  41. mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.user +1 -0
  42. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/meta.yaml +15 -0
  43. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/bleu_score +5 -0
  44. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/eval_loss +5 -0
  45. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/train_loss +5 -0
  46. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_0 +1 -0
  47. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_1 +1 -0
  48. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_2 +1 -0
  49. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_3 +1 -0
  50. mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_4 +1 -0
.dvc/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ /config.local
2
+ /tmp
3
+ /cache
.dvc/config ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ [core]
2
+ autostage = true
3
+ ['remote "origin"']
4
+ url = https://dagshub.com/Aryan-coder-student/Med-VQA.git
.dvcignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Add patterns of files dvc should ignore, which could improve
2
+ # the performance. Learn more at
3
+ # https://dvc.org/doc/user-guide/dvcignore
.gitattributes ADDED
File without changes
.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ models/best-saved-model
2
+ models/last-saved-model
3
+ Deployment/.env
Deployment/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ .env
2
+ Model/14-last-blip-saved-model/
Deployment/__pycache__/app.cpython-310.pyc ADDED
Binary file (1.66 kB). View file
 
Deployment/app.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ from flask import Flask, request, jsonify
3
+ from transformers import BlipProcessor, BlipForQuestionAnswering
4
+ from langchain.agents import initialize_agent, AgentType
5
+ from langchain.tools import Tool
6
+ from langchain_community.utilities import SerpAPIWrapper, PubMedAPIWrapper
7
+ from langchain_groq import ChatGroq
8
+ from langchain.memory import ConversationBufferMemory
9
+ from dotenv import load_dotenv
10
+ import os
11
+ from PIL import Image
12
+ from flask_cors import CORS
13
+
14
+
15
+ load_dotenv()
16
+ os.getenv("SERPAPI_API_KEY")
17
+ os.getenv("GROQ_API_KEY")
18
+
19
+
20
+ app = Flask(__name__)
21
+ CORS(app)
22
+
23
+
24
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
25
+
26
+ fine_tuned_model = BlipForQuestionAnswering.from_pretrained(os.path.join("Deployment/Model/14-last-blip-saved-model")).to(device)
27
+ processor = BlipProcessor.from_pretrained("Salesforce/blip-vqa-base")
28
+
29
+ memory = ConversationBufferMemory()
30
+ def chat_bot_query(query: str):
31
+ search_tool = Tool(
32
+ name="Medical_Web_Search",
33
+ func=SerpAPIWrapper().run,
34
+ description="Searches the web for medical information related to brain, CT, and MRI scans."
35
+ )
36
+
37
+ pubmed_tool = Tool(
38
+ name="PubMed_Search",
39
+ func=PubMedAPIWrapper().run,
40
+ description="Searches PubMed for research papers related to brain, CT, and MRI scans."
41
+ )
42
+
43
+ agent = initialize_agent(
44
+ agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
45
+ tools=[search_tool, pubmed_tool],
46
+ llm=ChatGroq(model="gemma2-9b-it"),
47
+ memory=memory,
48
+ verbose=False,
49
+ max_iterations=10,
50
+ handle_parsing_errors=True
51
+ )
52
+
53
+ response = agent.run(query)
54
+ return response
55
+
56
+
57
+
58
+ def predict_answer(image, question):
59
+ try:
60
+ image = image.convert('RGB')
61
+ inputs = processor(image, question, return_tensors="pt").to(device)
62
+ fine_tuned_output = fine_tuned_model.generate(**inputs)
63
+ fine_tuned_answer = processor.tokenizer.decode(fine_tuned_output[0], skip_special_tokens=True)
64
+ return fine_tuned_answer
65
+ except Exception as e:
66
+ return f"Error in prediction: {e}"
67
+
68
+
69
+ @app.route('/predict/', methods=['GET', 'POST'])
70
+ def predict():
71
+ try:
72
+ file = request.files['file']
73
+ question = request.form['question']
74
+ if not file or not question:
75
+ return jsonify({'error': 'No file or question provided'}), 400
76
+ image = Image.open(file)
77
+ answer = predict_answer(image, question)
78
+ return jsonify({'answer': answer})
79
+ except Exception as e:
80
+ return jsonify({'error': str(e)}), 500
81
+
82
+ @app.route('/chat/', methods=['POST'])
83
+ def chat():
84
+ try:
85
+ data = request.get_json()
86
+ query = data.get('query')
87
+ if not query:
88
+ return jsonify({'error': 'No query provided'}), 400
89
+
90
+ response = chat_bot_query(query)
91
+ return jsonify({'response': response})
92
+ except Exception as e:
93
+ print(e)
94
+ return jsonify({'error': str(e)}), 500
95
+
96
+
97
+ if __name__ == '__main__':
98
+ app.run(debug=True, host='0.0.0.0', port='5000')
Deployment/streamlit/.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .env
Deployment/streamlit/main.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import requests
3
+ from PIL import Image
4
+ import io
5
+
6
+ st.set_page_config(page_title="VQA with BLIP", layout="centered", page_icon="🤖")
7
+ st.title("Visual Question Answering (VQA) with BLIP")
8
+
9
+ uploaded_file = st.file_uploader("Upload an Image", type=["jpg", "png", "jpeg"])
10
+ question = st.text_input("Ask a question about the image:")
11
+
12
+ if uploaded_file and question:
13
+ image = Image.open(uploaded_file)
14
+ st.image(image, caption="Uploaded Image", use_column_width=True)
15
+ if st.button("Get Answer"):
16
+ img_bytes = io.BytesIO()
17
+ image.save(img_bytes, format="JPEG")
18
+ img_bytes = img_bytes.getvalue()
19
+ files = {"file": ("image.jpg", img_bytes, "image/jpeg")}
20
+ data = {"question": question}
21
+ response = requests.post("http://127.0.0.1:5000//predict/", files=files, data=data)
22
+
23
+ if response.status_code == 200:
24
+ answer = response.json().get("answer", "No answer received")
25
+ st.success(f"Answer: {answer}")
26
+ else:
27
+ st.error("Error in fetching the answer. Please try again.")
Deployment/test_api.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+
3
+ # Define the URL of the Flask server
4
+ url = "http://127.0.0.1:5000/chat/"
5
+
6
+ # Define the query you want to send
7
+ query = "Provide recent papers links or researches on brain tumors."
8
+
9
+ # Create the JSON payload
10
+ payload = {
11
+ "query": query
12
+ }
13
+
14
+ # Set the headers to specify JSON content
15
+ headers = {
16
+ "Content-Type": "application/json"
17
+ }
18
+
19
+ # Send the POST request
20
+ try:
21
+ response = requests.post(url, json=payload, headers=headers)
22
+
23
+ # Check if the request was successful
24
+ if response.status_code == 200:
25
+ print("Response from server:")
26
+ print(response.json())
27
+ else:
28
+ print(f"Error: {response.status_code}")
29
+ print(response.json())
30
+ except Exception as e:
31
+ print(f"An error occurred: {e}")
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FROM python:3.10
2
+ # WORKDIR /app
3
+ # COPY requirements.txt .
4
+ # RUN pip install -r requirements.txt
5
+ # COPY . .
6
+ # EXPOSE 5000 8501
7
+ # CMD ["sh", "-c", "python Deployment/app.py & while ! nc -z localhost 5000; do sleep 1; done; streamlit run Deployment/streamlit/main.py --server.port=8501 --server.address=0.0.0.0"]
8
+ FROM python:3.10
9
+ WORKDIR /app
10
+ COPY requirements.txt .
11
+ RUN pip install -r requirements.txt
12
+ COPY . .
13
+ EXPOSE 5000
14
+ CMD ["python", "Deployment/app.py"]
README.md CHANGED
@@ -1 +1 @@
1
- # NeuroVision-BHPC-VQA
 
1
+ # NeuroVision-VQA
config.yaml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ finetune_model:
2
+ best: models/best-saved-model
3
+ last: models/last-saved-model
4
+ orignal_model_id: Salesforce/blip-vqa-base
5
+ data_location:
6
+ data: data/bronze/flaviagiammarino___vqa-rad
7
+ train_processed_data: data/silver/train_dataset.pkl
8
+ test_processed_data: data/silver/test_dataset.pkl
9
+
10
+ result: results
data/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /bronze
2
+ /silver
data/bronze.dvc ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ outs:
2
+ - md5: 32db974481a7ea051c9c852355c7b221.dir
3
+ size: 153579281
4
+ nfiles: 7
5
+ hash: md5
6
+ path: bronze
dvc.lock ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema: '2.0'
2
+ stages:
3
+ preprocess:
4
+ cmd: python src/preprocess_data.py
5
+ deps:
6
+ - path: data/bronze/downloads
7
+ hash: md5
8
+ md5: 1454b6162c5ef2c24c037ba883797c3b.dir
9
+ size: 34497027
10
+ nfiles: 4
11
+ - path: src/preprocess_data.py
12
+ hash: md5
13
+ md5: b1141ff5738a52bee364a048006112a2
14
+ size: 2333
15
+ outs:
16
+ - path: data/silver
17
+ hash: md5
18
+ md5: 1b44b8c6bbc048557b5285a27b9cc1f5.dir
19
+ size: 941687
20
+ nfiles: 2
dvc.yaml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ stages:
2
+ preprocess:
3
+ cmd: python src/preprocess_data.py
4
+ deps:
5
+ - src/preprocess_data.py
6
+ - data/bronze/downloads
7
+ outs:
8
+ - data/silver
9
+
10
+ train:
11
+ cmd: python src/train.py
12
+ deps:
13
+ - src/train.py
14
+ - data/silver
15
+ - param.yaml
16
+ outs:
17
+ - models
18
+
19
+
20
+ evaluate:
21
+ cmd: python src/evaluate.py
22
+ deps:
23
+ - src/evaluate.py
24
+ - models
25
+ - data/silver
26
+ outs:
27
+ - results
mlruns/0/meta.yaml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ artifact_location: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/0
2
+ creation_time: 1738400123102
3
+ experiment_id: '0'
4
+ last_update_time: 1738400123102
5
+ lifecycle_stage: active
6
+ name: Default
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/meta.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_uri: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/artifacts
2
+ end_time: 1742659076026
3
+ entry_point_name: ''
4
+ experiment_id: '271729933174040292'
5
+ lifecycle_stage: active
6
+ run_id: 0ddd5ed748f54c8883bf1830e5bf029c
7
+ run_name: clean-bee-82
8
+ run_uuid: 0ddd5ed748f54c8883bf1830e5bf029c
9
+ source_name: ''
10
+ source_type: 4
11
+ source_version: ''
12
+ start_time: 1742659058810
13
+ status: 4
14
+ tags: []
15
+ user_id: ASUS
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.runName ADDED
@@ -0,0 +1 @@
 
 
1
+ clean-bee-82
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.git.commit ADDED
@@ -0,0 +1 @@
 
 
1
+ df4034786b530485650893743b7ee5889c863b0a
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.name ADDED
@@ -0,0 +1 @@
 
 
1
+ src/train.py
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.source.type ADDED
@@ -0,0 +1 @@
 
 
1
+ LOCAL
mlruns/271729933174040292/0ddd5ed748f54c8883bf1830e5bf029c/tags/mlflow.user ADDED
@@ -0,0 +1 @@
 
 
1
+ ASUS
mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/meta.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_uri: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/artifacts
2
+ end_time: 1738904546941
3
+ entry_point_name: ''
4
+ experiment_id: '271729933174040292'
5
+ lifecycle_stage: active
6
+ run_id: 257978a9195e4891a4b58f979bd21da7
7
+ run_name: tasteful-wren-640
8
+ run_uuid: 257978a9195e4891a4b58f979bd21da7
9
+ source_name: ''
10
+ source_type: 4
11
+ source_version: ''
12
+ start_time: 1738904472965
13
+ status: 4
14
+ tags: []
15
+ user_id: VIT
mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.runName ADDED
@@ -0,0 +1 @@
 
 
1
+ tasteful-wren-640
mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.source.name ADDED
@@ -0,0 +1 @@
 
 
1
+ src/train.py
mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.source.type ADDED
@@ -0,0 +1 @@
 
 
1
+ LOCAL
mlruns/271729933174040292/257978a9195e4891a4b58f979bd21da7/tags/mlflow.user ADDED
@@ -0,0 +1 @@
 
 
1
+ VIT
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/meta.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_uri: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/artifacts
2
+ end_time: 1738508905313
3
+ entry_point_name: ''
4
+ experiment_id: '271729933174040292'
5
+ lifecycle_stage: active
6
+ run_id: 581fe86b792242ec88ae6c7793f69919
7
+ run_name: peaceful-snipe-124
8
+ run_uuid: 581fe86b792242ec88ae6c7793f69919
9
+ source_name: ''
10
+ source_type: 4
11
+ source_version: ''
12
+ start_time: 1738508889425
13
+ status: 4
14
+ tags: []
15
+ user_id: ASUS
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.runName ADDED
@@ -0,0 +1 @@
 
 
1
+ peaceful-snipe-124
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.git.commit ADDED
@@ -0,0 +1 @@
 
 
1
+ f1692ec7d45a18ee2c8f0fe487553d6a184bfc3a
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.name ADDED
@@ -0,0 +1 @@
 
 
1
+ src/train.py
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.source.type ADDED
@@ -0,0 +1 @@
 
 
1
+ LOCAL
mlruns/271729933174040292/581fe86b792242ec88ae6c7793f69919/tags/mlflow.user ADDED
@@ -0,0 +1 @@
 
 
1
+ ASUS
mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/meta.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_uri: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/artifacts
2
+ end_time: 1738400286679
3
+ entry_point_name: ''
4
+ experiment_id: '271729933174040292'
5
+ lifecycle_stage: active
6
+ run_id: 67e7980b68664f9385c14de927d46167
7
+ run_name: rebellious-asp-756
8
+ run_uuid: 67e7980b68664f9385c14de927d46167
9
+ source_name: ''
10
+ source_type: 4
11
+ source_version: ''
12
+ start_time: 1738400274297
13
+ status: 4
14
+ tags: []
15
+ user_id: ASUS
mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.runName ADDED
@@ -0,0 +1 @@
 
 
1
+ rebellious-asp-756
mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.source.name ADDED
@@ -0,0 +1 @@
 
 
1
+ d:\My File\Project\MedHelp-Brain-VQA\End-To-End-Pipline\VQA\src\train.py
mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.source.type ADDED
@@ -0,0 +1 @@
 
 
1
+ LOCAL
mlruns/271729933174040292/67e7980b68664f9385c14de927d46167/tags/mlflow.user ADDED
@@ -0,0 +1 @@
 
 
1
+ ASUS
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/meta.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_uri: file:///D:/My%20File/Project/MedHelp-Brain-VQA/End-To-End-Pipline/VQA/mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/artifacts
2
+ end_time: 1739270329295
3
+ entry_point_name: ''
4
+ experiment_id: '271729933174040292'
5
+ lifecycle_stage: active
6
+ run_id: 7c6de0cfdddd47c299c5235291b99bf5
7
+ run_name: clumsy-robin-616
8
+ run_uuid: 7c6de0cfdddd47c299c5235291b99bf5
9
+ source_name: ''
10
+ source_type: 4
11
+ source_version: ''
12
+ start_time: 1739259742693
13
+ status: 4
14
+ tags: []
15
+ user_id: VIT
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/bleu_score ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ 1739261831601 0.05723518642092382 0
2
+ 1739263932368 0.0565093265115535 1
3
+ 1739266009599 0.05611502952484864 2
4
+ 1739268078542 0.05611502952484864 3
5
+ 1739270173935 0.056453157920654924 4
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/eval_loss ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ 1739261831601 11.475591375116716 0
2
+ 1739263932368 10.817912503292685 1
3
+ 1739266009599 10.372373430352463 2
4
+ 1739268078542 10.242192536069636 3
5
+ 1739270173935 10.166932239867092 4
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/metrics/train_loss ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ 1739261831601 11.472894626193577 0
2
+ 1739263932368 11.154893341064453 1
3
+ 1739266009599 10.531031091478136 2
4
+ 1739268078542 10.308383038838704 3
5
+ 1739270173935 10.192635604010688 4
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_0 ADDED
@@ -0,0 +1 @@
 
 
1
+ 0.0
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_1 ADDED
@@ -0,0 +1 @@
 
 
1
+ 4.444444444444445e-08
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_2 ADDED
@@ -0,0 +1 @@
 
 
1
+ 8.88888888888889e-08
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_3 ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.3333333333333334e-07
mlruns/271729933174040292/7c6de0cfdddd47c299c5235291b99bf5/params/learning_rate_4 ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.777777777777778e-07