{"id":19840949,"url":"https://github.com/torvaney/image-xg","last_synced_at":"2026-06-11T00:31:17.062Z","repository":{"id":133824126,"uuid":"326536303","full_name":"Torvaney/image-xg","owner":"Torvaney","description":null,"archived":false,"fork":false,"pushed_at":"2021-03-03T18:09:44.000Z","size":2953,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-28T22:24:49.975Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Torvaney.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}},"created_at":"2021-01-04T01:20:03.000Z","updated_at":"2021-04-25T08:02:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"32852288-59d7-4d22-9a0d-bbd518557af7","html_url":"https://github.com/Torvaney/image-xg","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Torvaney/image-xg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Fimage-xg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Fimage-xg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Fimage-xg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Fimage-xg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Torvaney","download_url":"https://codeload.github.com/Torvaney/image-xg/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Fimage-xg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34177445,"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-10T02:00:07.152Z","response_time":89,"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-11-12T12:28:47.749Z","updated_at":"2026-06-11T00:31:17.024Z","avatar_url":"https://github.com/Torvaney.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# image-xg\n\nAn xG model based on image processing.\n\n* Fetch shots' freeze frames\n* [Shot freeze frame] -\u003e [Img] (in directories for train/test -\u003e goals/not goals, files named by their ID)\n* Img -\u003e xG\n\n\n## Project Organization\n\n```\n├── LICENSE\n├── Makefile           \u003c- Makefile with commands like `make data` or `make train`\n├── README.md          \u003c- The top-level README for developers using this project.\n├── data\n│   ├── external       \u003c- Data from third party sources.\n│   ├── interim        \u003c- Intermediate data that has been transformed.\n│   ├── processed      \u003c- The final, canonical data sets for modeling.\n│   └── raw            \u003c- The original, immutable data dump.\n│\n├── docs               \u003c- A default Sphinx project; see sphinx-doc.org for details\n│\n├── models             \u003c- Trained and serialized models, model predictions, or model summaries\n│\n├── notebooks          \u003c- Jupyter notebooks. Naming convention is a number (for ordering),\n│                         the creator's initials, and a short `-` delimited description, e.g.\n│                         `1.0-jqp-initial-data-exploration`.\n│\n├── references         \u003c- Data dictionaries, manuals, and all other explanatory materials.\n│\n├── reports            \u003c- Generated analysis as HTML, PDF, LaTeX, etc.\n│   └── figures        \u003c- Generated graphics and figures to be used in reporting\n│\n├── requirements.txt   \u003c- The requirements file for reproducing the analysis environment, e.g.\n│                         generated with `pip freeze \u003e requirements.txt`\n│\n├── setup.py           \u003c- makes project pip installable (pip install -e .) so src can be imported\n├── src                \u003c- Source code for use in this project.\n│   ├── __init__.py    \u003c- Makes src a Python module\n│   │\n│   ├── data           \u003c- Scripts to download or generate data\n│   │   └── make_dataset.py\n│   │\n│   ├── features       \u003c- Scripts to turn raw data into features for modeling\n│   │   └── build_features.py\n│   │\n│   ├── models         \u003c- Scripts to train models and then use trained models to make\n│   │   │                 predictions\n│   │   ├── predict_model.py\n│   │   └── train_model.py\n│   │\n│   └── visualization  \u003c- Scripts to create exploratory and results oriented visualizations\n│       └── visualize.py\n│\n└── tox.ini            \u003c- tox file with settings for running tox; see tox.readthedocs.io\n```\n\n--------\n\n\u003cp\u003e\u003csmall\u003eProject based on the \u003ca target=\"_blank\" href=\"https://drivendata.github.io/cookiecutter-data-science/\"\u003ecookiecutter data science project template\u003c/a\u003e. #cookiecutterdatascience\u003c/small\u003e\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftorvaney%2Fimage-xg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftorvaney%2Fimage-xg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftorvaney%2Fimage-xg/lists"}