├── .gitignore ├── Chatbot ├── Back-End │ ├── .idea │ │ ├── .gitignore │ │ ├── Back-End.iml │ │ ├── dataSources.local.xml │ │ ├── dataSources.xml │ │ ├── dataSources │ │ │ ├── 12890b0f-7b07-434c-8682-a8c6b2db2883.xml │ │ │ └── 12890b0f-7b07-434c-8682-a8c6b2db2883 │ │ │ │ └── storage_v2 │ │ │ │ └── _src_ │ │ │ │ └── schema │ │ │ │ ├── information_schema.FNRwLQ.meta │ │ │ │ ├── information_schema.FNRwLQ.zip │ │ │ │ ├── mysql.osA4Bg.meta │ │ │ │ ├── performance_schema.kIw0nw.meta │ │ │ │ └── sys.zb4BAA.meta │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── jsLibraryMappings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── sqldialects.xml │ │ └── vcs.xml │ ├── README.md │ ├── components │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── components.iml │ │ │ ├── inspectionProfiles │ │ │ │ ├── Project_Default.xml │ │ │ │ └── profiles_settings.xml │ │ │ ├── modules.xml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── ai │ │ │ ├── __pycache__ │ │ │ │ ├── linearize.cpython-310.pyc │ │ │ │ └── main.cpython-39.pyc │ │ │ ├── main.py │ │ │ ├── specific_qa.jpg │ │ │ └── supertable_qa.jpg │ │ ├── database │ │ │ ├── __pycache__ │ │ │ │ └── db_helper.cpython-39.pyc │ │ │ ├── db_helper.py │ │ │ └── tools │ │ │ │ └── database │ │ │ │ ├── ai_uml.pdf │ │ │ │ ├── athletes_uml.pdf │ │ │ │ ├── database.sql │ │ │ │ ├── initialize_database.sql │ │ │ │ ├── provinces_uml.pdf │ │ │ │ ├── regional_tables_uml.pdf │ │ │ │ ├── sports_uml.pdf │ │ │ │ └── test_ai.sql │ │ ├── main.py │ │ ├── py_handler.js │ │ ├── scraping │ │ │ ├── Event_Scrapper.py.orig │ │ │ ├── Scraper.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── Scraper.cpython-39.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── chromedriver.exe │ │ │ ├── modules │ │ │ │ ├── GemsPro │ │ │ │ │ ├── (Reference)ScrapeSpecificAthlete.py │ │ │ │ │ ├── (outdated)ScrapeParticipant.py │ │ │ │ │ ├── (outdated)ScrapeTeam.py │ │ │ │ │ ├── Event_Scrapper.py │ │ │ │ │ └── SearchSpecificAlumini.py │ │ │ │ ├── NiagaraWebsite │ │ │ │ │ ├── ScrapeEventsNiagara2022.py │ │ │ │ │ ├── ScrapeNewsAluminiStories.py │ │ │ │ │ ├── ScrapeNewsArticles.py │ │ │ │ │ └── ScrapeNewsMediaReleases.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── event.cpython-39.pyc │ │ │ │ ├── all_individual_athletes.py │ │ │ │ ├── all_teams.py │ │ │ │ ├── event.py │ │ │ │ ├── individual_athlete.py │ │ │ │ ├── misc_data.py │ │ │ │ ├── province_medals.py │ │ │ │ ├── sport_dates.py │ │ │ │ └── teams.py │ │ │ └── structures │ │ │ │ ├── StructureGemsPro │ │ │ │ ├── AluminiPageStructure.json │ │ │ │ ├── FindAnAlumini.json │ │ │ │ └── TeamsTablecg2019.json │ │ │ │ └── StructureNiagaraWebsite │ │ │ │ ├── Niagara2022NewsSection.json │ │ │ │ ├── ScheduleFilter.json │ │ │ │ └── sports.json │ │ ├── temp.py │ │ └── testing │ │ │ ├── Test.py │ │ │ ├── __init__.py │ │ │ └── data │ │ │ ├── test_scraper_event_getLabelsAndContent.json │ │ │ ├── test_scraper_event_getNamesAndUrls.json │ │ │ ├── test_scraper_event_sports.json │ │ │ └── test_scraper_event_teamSports.json │ ├── index.js │ ├── mlruns │ │ └── 0 │ │ │ ├── 002ad637715849aa8d854dc3dfd04e54 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 0cc3dcc1a0db45c79b295e604c36ecb4 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 1078767d80c14fc79f18ce146515ada8 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 22b5514f3d1142b2b59a93f5aacfbda5 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 26936cef4ad145cea0dea261eaa06307 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 2761a8c99eb8424b8fb30ddf16ef6a72 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 2999e63c6fde42e58ec6b39ecceb2b6f │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 29f7ea8a781b49f3b561b341769a4616 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 2d621edfb08b4c71bc19d94c8e775eb4 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 3630882d1eab49b48353d75c28c1e420 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 3af02eede1e54f21bde1770c58ca1643 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 411954909439465f82f32f8ace89d71c │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 4496688bc21a445f92e8a6bb32b29355 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 47b9f9de014b47fa96b6874720d7ab9b │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 58232b6ea2324a31a15314b0ab59151e │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 5b51f52f0b3e4467b644c15344efd5be │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 5c927193ee274bb8a984377d157659f0 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 5e5ca6b2ada243db88b5c7a0f0d09328 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 5e83b2d5ac8f473a97ea3b9fbbefea99 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 6127efc740dd41dcaed0007e99ec95a9 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 650bd804aef248f78f181d1e0662eb10 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 6668a42b965c42969466beba0db9d1fe │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 6b62f3cd26274fcd8775cb80ffebb980 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 6d6eb9c48eee44b6a05a59675e5bb374 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 70b25b7618fa41678c707d3ee3c0a5d1 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 7dc86a881a374c7fbec986633cc3d41f │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 7f27472f7ac44040a1c2afa8eb098676 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 830d398873124102bc588310248306e3 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 88e598b24a1c4f859a98f6d4b91d8568 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 8e6f17e0a9e14a58b8f4e0960bf889b9 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 9b891140ddf14ab0ab61d7f94972892c │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── 9e1a75e3986a45ec8dd8af28dfae4032 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── a8554fc5ae914e4eaf517d9db191c2c4 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── ab461b1f3f1645369a49fe5a1b41c859 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── adf4591c23314714904a99f667911efa │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── b0af1312135542aa9612b33698b64ba6 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── ce2f03aef1c34471a420aad10684b0fb │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── d3b9ffea9bd84f37976cb1c8f1a7638e │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── d57d9f09b0df448c9316f76af3fc85f6 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── d6ff18123fda497a97ed46478f51f10b │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── dacb541ae31447f99e3d975be6087fc7 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── eecd847c6f924af89e4504c9291b243e │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── f5076100229b43b3a010ac525aa16d64 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── f54200bb5378456a972cc69170e8b4ea │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ ├── fbd0a52247de43cdb9576f061adc0074 │ │ │ ├── meta.yaml │ │ │ ├── params │ │ │ │ ├── dev_split │ │ │ │ ├── lm1_name │ │ │ │ ├── lm1_output_types │ │ │ │ ├── lm1_type │ │ │ │ ├── lm2_name │ │ │ │ ├── lm2_output_types │ │ │ │ ├── lm2_type │ │ │ │ ├── lm3_name │ │ │ │ ├── lm3_output_types │ │ │ │ ├── lm3_type │ │ │ │ ├── max_seq_len │ │ │ │ ├── prediction_heads │ │ │ │ ├── processor │ │ │ │ └── tokenizer │ │ │ └── tags │ │ │ │ ├── mlflow.source.git.commit │ │ │ │ ├── mlflow.source.name │ │ │ │ ├── mlflow.source.type │ │ │ │ └── mlflow.user │ │ │ └── meta.yaml │ ├── package-lock.json │ └── package.json └── Front-End │ ├── .idea │ ├── .gitignore │ ├── Front-End.iml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ ├── vcs.xml │ └── watcherTasks.xml │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── 404.jpg │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.js │ ├── App.scss │ ├── Components │ ├── admin │ │ ├── Admin.js │ │ ├── Admin.scss │ │ ├── Dashboard.js │ │ ├── Dashboard.scss │ │ ├── LoginForm.js │ │ └── ServerComponents │ │ │ ├── ComponentStatus.js │ │ │ ├── ComponentStatus.scss │ │ │ ├── DataVisualizer.js │ │ │ ├── DataVisualizer.scss │ │ │ └── TestResults.js │ └── chat │ │ ├── Background.jpg │ │ ├── Chat.js │ │ ├── ChatLogin.css │ │ ├── ChatLogin.js │ │ ├── Header.css │ │ └── Header.js │ ├── index.js │ └── reportWebVitals.js ├── Chatbotdiagram.png ├── Documents ├── FinalPresentation.pdf ├── FinalProgressReport4p02.pdf ├── ProductBacklog ├── ProgressReport4p02.pdf ├── ProgressReport4p02_2.pdf └── Project_Proposal.pdf ├── README.md ├── geckodriver.log └── mlruns └── 0 ├── 258dd75e159e40dd85c4c9301e618baf ├── meta.yaml ├── params │ ├── dev_split │ ├── lm_name │ ├── lm_output_types │ ├── lm_type │ ├── max_seq_len │ ├── prediction_heads │ ├── processor │ └── tokenizer └── tags │ ├── mlflow.source.name │ ├── mlflow.source.type │ └── mlflow.user ├── f3b4e0f0c71b4915b680c56e17fd7c9d ├── meta.yaml ├── params │ ├── dev_split │ ├── lm_name │ ├── lm_output_types │ ├── lm_type │ ├── max_seq_len │ ├── prediction_heads │ ├── processor │ └── tokenizer └── tags │ ├── mlflow.source.name │ ├── mlflow.source.type │ └── mlflow.user └── meta.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/.gitignore -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/.gitignore -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/Back-End.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/Back-End.iml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/dataSources.local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/dataSources.local.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/dataSources.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/dataSources/12890b0f-7b07-434c-8682-a8c6b2db2883.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/dataSources/12890b0f-7b07-434c-8682-a8c6b2db2883.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/dataSources/12890b0f-7b07-434c-8682-a8c6b2db2883/storage_v2/_src_/schema/information_schema.FNRwLQ.meta: -------------------------------------------------------------------------------- 1 | #n:information_schema -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/misc.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/modules.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/sqldialects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/sqldialects.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/.idea/vcs.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/README.md -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/components.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/components.iml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/modules.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/vcs.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/.idea/workspace.xml -------------------------------------------------------------------------------- /Chatbot/Back-End/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbot/Back-End/components/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/ai/__pycache__/linearize.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/ai/__pycache__/linearize.cpython-310.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/ai/__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/ai/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/ai/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/ai/main.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/ai/specific_qa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/ai/specific_qa.jpg -------------------------------------------------------------------------------- /Chatbot/Back-End/components/ai/supertable_qa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/ai/supertable_qa.jpg -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/__pycache__/db_helper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/__pycache__/db_helper.cpython-39.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/db_helper.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/ai_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/ai_uml.pdf -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/athletes_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/athletes_uml.pdf -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/database.sql -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/initialize_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/initialize_database.sql -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/provinces_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/provinces_uml.pdf -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/regional_tables_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/regional_tables_uml.pdf -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/sports_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/sports_uml.pdf -------------------------------------------------------------------------------- /Chatbot/Back-End/components/database/tools/database/test_ai.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/database/tools/database/test_ai.sql -------------------------------------------------------------------------------- /Chatbot/Back-End/components/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/main.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/py_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/py_handler.js -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/Event_Scrapper.py.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/Event_Scrapper.py.orig -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/Scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/Scraper.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/__pycache__/Scraper.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/__pycache__/Scraper.cpython-39.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/chromedriver.exe -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/GemsPro/Event_Scrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/GemsPro/Event_Scrapper.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/all_individual_athletes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/all_individual_athletes.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/all_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/all_teams.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/event.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/individual_athlete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/individual_athlete.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/misc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/misc_data.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/province_medals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/province_medals.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/sport_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/sport_dates.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/scraping/modules/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/scraping/modules/teams.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/temp.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/testing/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/testing/Test.py -------------------------------------------------------------------------------- /Chatbot/Back-End/components/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbot/Back-End/components/testing/data/test_scraper_event_getNamesAndUrls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Chatbot/Back-End/components/testing/data/test_scraper_event_sports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/testing/data/test_scraper_event_sports.json -------------------------------------------------------------------------------- /Chatbot/Back-End/components/testing/data/test_scraper_event_teamSports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/components/testing/data/test_scraper_event_teamSports.json -------------------------------------------------------------------------------- /Chatbot/Back-End/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/index.js -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/002ad637715849aa8d854dc3dfd04e54/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/0cc3dcc1a0db45c79b295e604c36ecb4/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/1078767d80c14fc79f18ce146515ada8/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/22b5514f3d1142b2b59a93f5aacfbda5/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/26936cef4ad145cea0dea261eaa06307/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2761a8c99eb8424b8fb30ddf16ef6a72/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2999e63c6fde42e58ec6b39ecceb2b6f/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/29f7ea8a781b49f3b561b341769a4616/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/2d621edfb08b4c71bc19d94c8e775eb4/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3630882d1eab49b48353d75c28c1e420/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/3af02eede1e54f21bde1770c58ca1643/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/411954909439465f82f32f8ace89d71c/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/4496688bc21a445f92e8a6bb32b29355/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/47b9f9de014b47fa96b6874720d7ab9b/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/58232b6ea2324a31a15314b0ab59151e/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5b51f52f0b3e4467b644c15344efd5be/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5c927193ee274bb8a984377d157659f0/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e5ca6b2ada243db88b5c7a0f0d09328/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/5e83b2d5ac8f473a97ea3b9fbbefea99/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6127efc740dd41dcaed0007e99ec95a9/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/650bd804aef248f78f181d1e0662eb10/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm3_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm3_name -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6668a42b965c42969466beba0db9d1fe/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6b62f3cd26274fcd8775cb80ffebb980/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/6d6eb9c48eee44b6a05a59675e5bb374/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/70b25b7618fa41678c707d3ee3c0a5d1/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7dc86a881a374c7fbec986633cc3d41f/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/7f27472f7ac44040a1c2afa8eb098676/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/830d398873124102bc588310248306e3/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/88e598b24a1c4f859a98f6d4b91d8568/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/8e6f17e0a9e14a58b8f4e0960bf889b9/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9b891140ddf14ab0ab61d7f94972892c/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/9e1a75e3986a45ec8dd8af28dfae4032/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/a8554fc5ae914e4eaf517d9db191c2c4/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ab461b1f3f1645369a49fe5a1b41c859/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/adf4591c23314714904a99f667911efa/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/b0af1312135542aa9612b33698b64ba6/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/ce2f03aef1c34471a420aad10684b0fb/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d3b9ffea9bd84f37976cb1c8f1a7638e/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d57d9f09b0df448c9316f76af3fc85f6/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/d6ff18123fda497a97ed46478f51f10b/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/dacb541ae31447f99e3d975be6087fc7/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/eecd847c6f924af89e4504c9291b243e/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f5076100229b43b3a010ac525aa16d64/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/f54200bb5378456a972cc69170e8b4ea/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/dev_split: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm1_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-question_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm1_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm1_type: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm2_name: -------------------------------------------------------------------------------- 1 | deepset/bert-small-mm_retrieval-passage_encoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm2_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm2_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm3_output_types: -------------------------------------------------------------------------------- 1 | per_sequence -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/lm3_type: -------------------------------------------------------------------------------- 1 | DPRContextEncoder -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/prediction_heads: -------------------------------------------------------------------------------- 1 | TextSimilarityHead -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/processor: -------------------------------------------------------------------------------- 1 | TableTextSimilarityProcessor -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/params/tokenizer: -------------------------------------------------------------------------------- 1 | DPRQuestionEncoderTokenizerFast -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/fbd0a52247de43cdb9576f061adc0074/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /Chatbot/Back-End/mlruns/0/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/mlruns/0/meta.yaml -------------------------------------------------------------------------------- /Chatbot/Back-End/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/package-lock.json -------------------------------------------------------------------------------- /Chatbot/Back-End/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Back-End/package.json -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/.gitignore -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/Front-End.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/Front-End.iml -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/modules.xml -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/vcs.xml -------------------------------------------------------------------------------- /Chatbot/Front-End/.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /Chatbot/Front-End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/README.md -------------------------------------------------------------------------------- /Chatbot/Front-End/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/package-lock.json -------------------------------------------------------------------------------- /Chatbot/Front-End/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/package.json -------------------------------------------------------------------------------- /Chatbot/Front-End/public/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/404.jpg -------------------------------------------------------------------------------- /Chatbot/Front-End/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/favicon.ico -------------------------------------------------------------------------------- /Chatbot/Front-End/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/index.html -------------------------------------------------------------------------------- /Chatbot/Front-End/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/logo192.png -------------------------------------------------------------------------------- /Chatbot/Front-End/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/logo512.png -------------------------------------------------------------------------------- /Chatbot/Front-End/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/manifest.json -------------------------------------------------------------------------------- /Chatbot/Front-End/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/public/robots.txt -------------------------------------------------------------------------------- /Chatbot/Front-End/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/App.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/App.scss -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/Admin.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/Admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/Admin.scss -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/Dashboard.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/Dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/Dashboard.scss -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/LoginForm.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/ServerComponents/DataVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/ServerComponents/DataVisualizer.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/admin/ServerComponents/TestResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/admin/ServerComponents/TestResults.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/Background.jpg -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/Chat.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/ChatLogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/ChatLogin.css -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/ChatLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/ChatLogin.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/Header.css -------------------------------------------------------------------------------- /Chatbot/Front-End/src/Components/chat/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/Components/chat/Header.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/index.js -------------------------------------------------------------------------------- /Chatbot/Front-End/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbot/Front-End/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chatbotdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Chatbotdiagram.png -------------------------------------------------------------------------------- /Documents/FinalPresentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/FinalPresentation.pdf -------------------------------------------------------------------------------- /Documents/FinalProgressReport4p02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/FinalProgressReport4p02.pdf -------------------------------------------------------------------------------- /Documents/ProductBacklog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/ProductBacklog -------------------------------------------------------------------------------- /Documents/ProgressReport4p02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/ProgressReport4p02.pdf -------------------------------------------------------------------------------- /Documents/ProgressReport4p02_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/ProgressReport4p02_2.pdf -------------------------------------------------------------------------------- /Documents/Project_Proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/Documents/Project_Proposal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/README.md -------------------------------------------------------------------------------- /geckodriver.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/mlruns/0/258dd75e159e40dd85c4c9301e618baf/meta.yaml -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/dev_split: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/lm_name: -------------------------------------------------------------------------------- 1 | deepset/roberta-base-squad2 -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/lm_output_types: -------------------------------------------------------------------------------- 1 | per_token -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/lm_type: -------------------------------------------------------------------------------- 1 | Roberta -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 256 -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/prediction_heads: -------------------------------------------------------------------------------- 1 | QuestionAnsweringHead -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/processor: -------------------------------------------------------------------------------- 1 | SquadProcessor -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/params/tokenizer: -------------------------------------------------------------------------------- 1 | RobertaTokenizerFast -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/tags/mlflow.source.name: -------------------------------------------------------------------------------- 1 | g:\Study\Cosc 4p02\V2\Main\tutorial3_basic_qa_pipeline_without_elasticsearch.py -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /mlruns/0/258dd75e159e40dd85c4c9301e618baf/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/meta.yaml -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/dev_split: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/lm_name: -------------------------------------------------------------------------------- 1 | deepset/roberta-base-squad2 -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/lm_output_types: -------------------------------------------------------------------------------- 1 | per_token -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/lm_type: -------------------------------------------------------------------------------- 1 | Roberta -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/max_seq_len: -------------------------------------------------------------------------------- 1 | 256 -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/prediction_heads: -------------------------------------------------------------------------------- 1 | QuestionAnsweringHead -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/processor: -------------------------------------------------------------------------------- 1 | SquadProcessor -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/params/tokenizer: -------------------------------------------------------------------------------- 1 | RobertaTokenizerFast -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/tags/mlflow.source.name: -------------------------------------------------------------------------------- 1 | g:\Study\Cosc 4p02\V2\Main\tutorial3_basic_qa_pipeline_without_elasticsearch.py -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/tags/mlflow.source.type: -------------------------------------------------------------------------------- 1 | LOCAL -------------------------------------------------------------------------------- /mlruns/0/f3b4e0f0c71b4915b680c56e17fd7c9d/tags/mlflow.user: -------------------------------------------------------------------------------- 1 | rh18v -------------------------------------------------------------------------------- /mlruns/0/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manvendrarana/Cosc4p02ChatbotProject/HEAD/mlruns/0/meta.yaml --------------------------------------------------------------------------------