{"id":31055448,"url":"https://github.com/kajilabteam/xdr_challenge_2025","last_synced_at":"2025-09-15T04:49:00.071Z","repository":{"id":313863360,"uuid":"1025925926","full_name":"kajiLabTeam/xdr_challenge_2025","owner":"kajiLabTeam","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-09T05:55:54.000Z","size":29507,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-09T08:33:33.724Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kajiLabTeam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-07-25T03:26:31.000Z","updated_at":"2025-09-09T05:55:58.000Z","dependencies_parsed_at":"2025-09-09T08:43:54.826Z","dependency_job_id":null,"html_url":"https://github.com/kajiLabTeam/xdr_challenge_2025","commit_stats":null,"previous_names":["kajilabteam/xdr_challenge_2025"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/kajiLabTeam/xdr_challenge_2025","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kajiLabTeam%2Fxdr_challenge_2025","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kajiLabTeam%2Fxdr_challenge_2025/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kajiLabTeam%2Fxdr_challenge_2025/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kajiLabTeam%2Fxdr_challenge_2025/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kajiLabTeam","download_url":"https://codeload.github.com/kajiLabTeam/xdr_challenge_2025/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kajiLabTeam%2Fxdr_challenge_2025/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275207864,"owners_count":25423896,"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":"2025-09-15T02:00:09.272Z","response_time":75,"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":"2025-09-15T04:48:56.689Z","updated_at":"2025-09-15T04:49:00.051Z","avatar_url":"https://github.com/kajiLabTeam.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xDR Challenge 2025\n\n## セットアップ\n### 仮想環境の作成\n```bash\npython -m venv .venv\n```\n\n### 仮想環境のアクティベート\nVSCode の `Python: Select Interpreter` で `.venv` を選択するか、以下のコマンドを実行します。\n\n```bash\nsource /Users/satooru/Documents/kajilab/xdr-challenge/xdr_challenge_2025/.venv/bin/activate\n```\n\n### 必要なパッケージのインストール\n```bash\npip install -r requirements.txt\n```\n\n### 環境変数の設定\n※本番環境のみ\n\n```bash\ncp .env.example .env.competition\n```\n\n`.env.demo` の変更を反映しない設定\n```bash\ngit update-index --assume-unchanged .env.demo\n```\n\n`.env.demo` の変更を反映しない設定の解除\n```bash\ngit update-index --no-assume-unchanged .env.demo\n```\n\n## 実行方法\n### デモ環境\n```bash\npython main.py --demo\n```\n\n### 本番環境\n```bash\npython main.py\n```\n\n### オプション\n| オプション                | 省略形 | デフォルト値 | 説明                                                                               |\n| ------------------------- | ------ | ------------ | ---------------------------------------------------------------------------------- |\n| `--demo`                  | `-d`   | `False`      | デモ環境で実行します。環境変数は `.env.demo` を使用します。                        |\n| `--immediate`             | `-i`   | `False`      | 即時実行モードで実行します。                                                       |\n| `--gridsearch`            | `-g`   | `False`      | グリッドサーチモードで実行します。                                                 |\n| `--gridsearch-maxthreads` | `-gt`  | `10`         | グリッドサーチ時の最大スレッド数。                                                 |\n| `--maxwait`               | `-w`   | `0.5`        | nextdata 取得・送信時の間隔。単位は秒                                              |\n| `--loglevel`              | `-l`   | `info`       | ログの出力レベル。`debug`, `info`, `warning`, `error`, `critical` から選択します。 |\n| `--run-server`            | `-r`   | `False`      | ローカルの EvAAL API サーバーを起動します。本番環境では使用できません。            |\n| `--output-dir`            | `-o`   | `output`     | 出力ディレクトリ。                                                                 |\n| `--show-plot-map`         | `-s`   | `False`      | 推定結果をマップに表示します。デフォルトでは表示しません。                         |\n| `--no-save-plot-map`      | `-ns`  | `False`      | 推定結果をマップに保存しません。デフォルトでは保存します。                         |\n\n### 例\n```bash\npython main.py --demo -is\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkajilabteam%2Fxdr_challenge_2025","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkajilabteam%2Fxdr_challenge_2025","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkajilabteam%2Fxdr_challenge_2025/lists"}