{"id":16494735,"url":"https://github.com/devrimcavusoglu/irise-retrieval-system","last_synced_at":"2026-06-14T07:33:16.947Z","repository":{"id":243535496,"uuid":"786091533","full_name":"devrimcavusoglu/irise-retrieval-system","owner":"devrimcavusoglu","description":"IR System Implementation for the course project METU CENG596 '24","archived":false,"fork":false,"pushed_at":"2024-11-23T21:20:09.000Z","size":1902,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T06:36:54.188Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devrimcavusoglu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-13T12:00:31.000Z","updated_at":"2025-09-30T18:43:12.000Z","dependencies_parsed_at":"2024-06-09T18:10:57.435Z","dependency_job_id":null,"html_url":"https://github.com/devrimcavusoglu/irise-retrieval-system","commit_stats":null,"previous_names":["devrimcavusoglu/irise-retrieval-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devrimcavusoglu/irise-retrieval-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrimcavusoglu%2Firise-retrieval-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrimcavusoglu%2Firise-retrieval-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrimcavusoglu%2Firise-retrieval-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrimcavusoglu%2Firise-retrieval-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devrimcavusoglu","download_url":"https://codeload.github.com/devrimcavusoglu/irise-retrieval-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devrimcavusoglu%2Firise-retrieval-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34313515,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T14:15:26.174Z","updated_at":"2026-06-14T07:33:16.923Z","avatar_url":"https://github.com/devrimcavusoglu.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IRise Retrieval System\n\u003ca href=\"https://github.com/devrimcavusoglu/irise-retrieval-system/blob/main/rsc/final_report.pdf\"\u003e\u003cimg alt=\"Static Badge\" src=\"https://img.shields.io/badge/PDF-Report-gray?logo=adobeacrobatreader\u0026labelColor=%23EC1C24\u0026link=https%3A%2F%2Fwww.svgrepo.com%2Fshow%2F64173%2Fpdf-file.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/devrimcavusoglu/irise-retrieval-system/blob/main/rsc/poster.pdf\"\u003e\u003cimg alt=\"Static Badge\" src=\"https://img.shields.io/badge/PDF-Poster-gray?logo=adobeacrobatreader\u0026labelColor=%23EC1C24\u0026link=https%3A%2F%2Fwww.svgrepo.com%2Fshow%2F64173%2Fpdf-file.svg\"\u003e\u003c/a\u003e\n\nA simple retrieval system designed as a retrieve-and-rerank methodology. A high-level system overview is provided below.\n\n\u003ccenter\u003e\u003cimg height=\"640\" src=\"rsc/system_overview.png\"\u003e\u003c/center\u003e\n\n## Setup\n\nCreate a conda environment with the configuration file, and activate the environment when necessary.\n\n```shell\nconda env create -f environment.yml\n```\n\nactivate the environment by\n```shell\nconda activate irise\n```\n\n## Indexing\n\nIndex your data by running the command below:\n\n```shell\npython -m irise index\n```\n\nThis will use default variables for indexing path, etc. To see supported and customizable arguments, see\n\n```shell\npython -m irise index --help\n```\n\n## User Interface\nThe user interface designed as a web based UI with [streamlit](https://streamlit.io/). Run the following command at the project root.\n\n```shell\nstreamlit run dashboard/app.py\n```\n\n## Development\n\nFor convenience add the project root to PYTHONPATH, earlier conda versions support this by `develop` command, run\n\n```shell\nconda develop /path/to/project_root\n```\n\nHowever, `conda develop` is deprecated for recent versions, you can manually add the project root to PYTHONPATH by\n\n```shell\nexport PYTHONPATH=\"${PYTHONPATH}:/path/to/project_root\"\n```\n\nOpen Pull Request accordingly :).\n\n## License\n\nCopyright © 2024, Devrim Cavusoglu \u0026 Ezgi Çavaş.\n\nLicensed under Apache 2.0 License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevrimcavusoglu%2Firise-retrieval-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevrimcavusoglu%2Firise-retrieval-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevrimcavusoglu%2Firise-retrieval-system/lists"}