{"id":15444918,"url":"https://github.com/goern/osg-metrics","last_synced_at":"2026-01-07T15:03:50.765Z","repository":{"id":142163135,"uuid":"456446855","full_name":"goern/osg-metrics","owner":"goern","description":null,"archived":false,"fork":false,"pushed_at":"2022-02-07T10:09:18.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T08:14:51.901Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":false,"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/goern.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-07T09:55:27.000Z","updated_at":"2022-02-07T09:55:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"2e7126cc-9a76-4672-aa0b-172600333a1a","html_url":"https://github.com/goern/osg-metrics","commit_stats":{"total_commits":44,"total_committers":13,"mean_commits":"3.3846153846153846","dds":0.5227272727272727,"last_synced_commit":"bac7df21cd3cf0c427cb33d7f5c80f3a08b93ad2"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/goern/osg-metrics","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goern%2Fosg-metrics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goern%2Fosg-metrics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goern%2Fosg-metrics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goern%2Fosg-metrics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goern","download_url":"https://codeload.github.com/goern/osg-metrics/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goern%2Fosg-metrics/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28235935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-07T02:00:05.975Z","response_time":58,"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-01T19:43:11.555Z","updated_at":"2026-01-07T15:03:50.737Z","avatar_url":"https://github.com/goern.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"project-template\n==============================\n\ntemplate for the team to use\n\nProject Organization\n------------\n\n    ├── LICENSE\n    ├── Makefile                                \u003c- Makefile with commands like `make data` or `make train`\n    ├── Pipfile                                 \u003c- Pipfile stating package configuration as used by Pipenv.\n    ├── Pipfile.lock                            \u003c- Pipfile.lock stating a pinned down software stack with as used by Pipenv.\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 stating direct dependencies if a library\n    │                                               is developed.\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    ├── .thoth.yaml                             \u003c- Thoth's configuration file\n    ├── .aicoe-ci.yaml                          \u003c- AICoE CI configuration file (https://github.com/AICoE/aicoe-ci)\n    │\n    ├── .github                                 \u003c- GitHub configuration folder\n    │   ├── PULL_REQUEST_TEMPLATE               \u003c- GitHub templates for pull requests\n    │   │\n    │   ├── ISSUE_TEMPLATE                      \u003c- GitHub templates for issues\n    |       ├── {major|minor|patch}_release.md  \u003c- If Khebut GitHub App Bot (https://github.com/apps/khebhut) is installed, the issue will trigger a major|minor|patch release.\n    │       |                                       The bot will open a Pull Request to update the CHANGELOG and fix the opened issue.\n    │       |                                       NOTE: only users that are allowed to release (a.k.a. maintainers specified in the .thoth.yaml file) should open the issue, otherwise bot will\n    │       |                                       reject them, commenting and closing the issue.\n    │       |                                       If AICoE CI GitHub App (https://github.com/apps/aicoe-ci) is installed, once the pull request is merged a new tag is created by the bot\n    │       |                                       and the pipeline to build and push image starts.\n    │       |\n    |       └── redeliver_container_image.md    \u003c- If the tag exists and AICoE CI GitHub App (https://github.com/apps/aicoe-ci) is installed, the issue will retrigger the pipeline to build and\n    │                                               push image container image. NOTE: It should be used if the pipeline triggered with the {major|minor|patch}_release failed for any reason.\n    |\n    └── tox.ini                                 \u003c- tox file with settings for running tox; see tox.readthedocs.io\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%2Fgoern%2Fosg-metrics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoern%2Fosg-metrics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoern%2Fosg-metrics/lists"}