Tool for real-time visualization, monitoring and collaborative analysis of AI/ML experiments and live data. Supports Python, PyTorch/Torch, NumPy, TensorFlow/Keras https://visdom.dev
This report presents the forensic synthetic code analysis of fossasia/visdom, a Python project with 10,283 GitHub stars. SynthScan v2.0 examined 84,509 lines of code across 283 source files, recording 1622 pattern matches distributed across 10 syntactic categories. The overall adjusted score of 21.6 places this repository in the Moderate AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1622 distinct pattern matches across 10 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | py/tests/test_hparams.py | 61 | def test_posts_to_hparams_endpoint(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 71 | def test_env_ids_and_mode_pass_through(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 79 | def test_win_and_env_pass_through(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 87 | def test_opts_are_validated_client_side(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 96 | def test_posts_to_update_endpoint(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 105 | def test_bare_refresh_sends_only_the_window(self): | CODE |
| LOW⚡ | py/tests/test_hparams.py | 115 | def test_env_passes_through_as_eid(self): | CODE |
| LOW | py/tests/test_hparams.py | 128 | def test_opts_are_validated_client_side(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 80 | def test_no_query_returns_all(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 86 | def test_blank_query_returns_all(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 91 | def test_search_ignores_envs_without_experiments(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 100 | def test_filters_by_latest_metric(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 107 | def test_filters_by_namespaced_name(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 114 | def test_filters_by_builtin_field(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 121 | def test_filters_with_boolean_operators(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 131 | def test_no_matches_returns_empty(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 135 | def test_unknown_field_matches_nothing(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 139 | def test_invalid_query_raises_parse_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 144 | def test_non_string_query_raises_type_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 149 | def test_sorts_newest_first_by_default(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 178 | def test_sort_by_none_keeps_backend_order(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 183 | def test_sort_by_mixed_types_does_not_raise(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 192 | def test_filter_and_sort_combine(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 199 | def test_search_reads_what_another_store_wrote(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 237 | def test_empty_body_returns_everything(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 247 | def test_query_filters_results(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 254 | def test_experiments_are_returned_in_full(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 263 | def test_limit_pages_results_and_total_ignores_it(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 270 | def test_offset_walks_the_pages(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 276 | def test_offset_past_the_end_is_empty(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 282 | def test_limit_zero_returns_count_only(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 288 | def test_null_limit_asks_for_as_many_as_allowed(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 294 | def test_limit_above_the_cap_is_coerced_down(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 300 | def test_reply_reports_the_limit_it_applied(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 341 | def test_capped_limit_counts_against_the_window(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 348 | def test_total_is_never_capped(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 354 | def test_default_limit_is_applied(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 359 | def test_integral_float_limit_is_accepted(self): | CODE |
| LOW⚡ | py/tests/test_experiment_search.py | 364 | def test_sort_by_and_direction(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 165 | def test_sort_by_metric_puts_missing_last_in_both_directions(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 318 | def test_offset_is_never_coerced(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 325 | def test_the_whole_window_is_reachable(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 397 | def test_missing_body_returns_everything(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 418 | def test_sql_injection_payload_is_inert(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 427 | def test_reply_is_typed_as_json(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 442 | def test_echoed_query_cannot_open_a_tag(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 457 | def test_search_sees_an_experiment_logged_over_http(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 488 | def test_search_message_shape(self): | CODE |
| LOW | py/tests/test_experiment_search.py | 505 | def test_search_rejects_non_string_query(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 167 | def test_single_experiment_shares_everything(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 173 | def test_no_experiments_yields_empty_sections(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 181 | def test_groups_cluster_the_runs_that_agree(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 326 | def test_duplicate_env_ids_collapse(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 331 | def test_unknown_env_id_raises_key_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 337 | def test_env_without_experiment_raises_key_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 343 | def test_empty_env_ids_raises_value_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 348 | def test_string_env_ids_raises_type_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 353 | def test_non_string_env_id_raises_type_error(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 357 | def test_experiment_answers_to_the_env_it_is_stored_under(self): | CODE |
| LOW⚡ | py/tests/test_experiment_compare.py | 505 | def test_too_many_env_ids_is_refused_before_loading(self): | CODE |
| 1345 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | example/manual/visual_check.py | 219 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 221 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 229 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 231 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 242 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 244 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 260 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 262 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 271 | # =========================================================== | COMMENT |
| MEDIUM⚡ | example/manual/visual_check.py | 273 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 43 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 45 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 59 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 61 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 75 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 77 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 93 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 95 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 113 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 115 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 126 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 128 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 139 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 141 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 154 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 156 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 170 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 172 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 183 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 185 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 202 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 204 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 291 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 293 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 309 | # =========================================================== | COMMENT |
| MEDIUM | example/manual/visual_check.py | 311 | # =========================================================== | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | py/tests/test_hparams_update.py | 21 | CODE | |
| LOW | py/tests/testutils/__init__.py | 17 | CODE | |
| LOW | py/tests/testutils/__init__.py | 17 | CODE | |
| LOW | py/tests/testutils/__init__.py | 17 | CODE | |
| LOW | py/tests/testutils/__init__.py | 18 | CODE | |
| LOW | py/tests/testutils/__init__.py | 19 | CODE | |
| LOW | py/tests/testutils/__init__.py | 19 | CODE | |
| LOW | py/tests/testutils/__init__.py | 19 | CODE | |
| LOW | py/tests/testutils/__init__.py | 19 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/tests/testutils/__init__.py | 20 | CODE | |
| LOW | py/visdom/__init__.py | 9 | CODE | |
| LOW | py/visdom/loggers/__init__.py | 8 | CODE | |
| LOW | py/visdom/loggers/__init__.py | 9 | CODE | |
| LOW | py/visdom/loggers/__init__.py | 14 | CODE | |
| LOW | py/visdom/loggers/__init__.py | 21 | CODE | |
| LOW | py/visdom/experiments/models.py | 23 | CODE | |
| LOW | py/visdom/experiments/query.py | 58 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 9 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 9 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 9 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 14 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 25 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 38 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 39 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 39 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 39 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 39 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 45 | CODE | |
| LOW | py/visdom/experiments/__init__.py | 45 | CODE | |
| LOW | py/visdom/experiments/compare.py | 22 | CODE | |
| LOW | py/visdom/server/app.py | 58 | CODE | |
| LOW | py/visdom/server/app.py | 58 | CODE | |
| LOW | py/visdom/server/handlers/web_handlers.py | 24 | CODE | |
| LOW | py/visdom/server/handlers/web_handlers.py | 26 | CODE | |
| LOW | py/visdom/server/handlers/socket_handlers.py | 20 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 23 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 28 | CODE | |
| 26 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | setup.py | 24 | except Exception: | CODE |
| MEDIUM | py/visdom/__init__.py | 1704 | print("Error connecting to Visdom server!") | CODE |
| LOW | py/visdom/__init__.py | 124 | except Exception: | CODE |
| LOW | py/visdom/__init__.py | 880 | except Exception: | CODE |
| LOW | py/visdom/__init__.py | 922 | except Exception: | CODE |
| LOW | py/visdom/__init__.py | 983 | except Exception as e: | CODE |
| LOW | py/visdom/__init__.py | 1012 | except Exception as e: | CODE |
| LOW | py/visdom/__init__.py | 1083 | except Exception as e: | CODE |
| LOW | py/visdom/__init__.py | 1139 | except Exception: | CODE |
| LOW | py/visdom/loggers/keras.py | 136 | except Exception as e: | CODE |
| LOW | py/visdom/loggers/keras.py | 196 | except Exception as e: | CODE |
| LOW | py/visdom/loggers/xgboost.py | 311 | except Exception as e: | CODE |
| LOW | py/visdom/loggers/xgboost.py | 332 | except Exception as e: | CODE |
| MEDIUM | py/visdom/loggers/xgboost.py | 269 | def after_iteration(self, model, epoch, evals_log): | CODE |
| LOW | py/visdom/loggers/sklearn.py | 141 | except Exception as e: | CODE |
| LOW | py/visdom/loggers/sklearn.py | 166 | except Exception as e: | CODE |
| LOW | py/visdom/loggers/sklearn.py | 307 | except Exception: | CODE |
| LOW | py/visdom/loggers/sklearn.py | 347 | except Exception: | CODE |
| LOW | py/visdom/server/handlers/web_handlers.py | 857 | except Exception: | CODE |
| LOW | py/visdom/server/handlers/base_handlers.py | 45 | except Exception: # Not using secure cookies | CODE |
| LOW | py/visdom/server/handlers/base_handlers.py | 112 | except Exception: # Not using secure cookies | CODE |
| LOW | py/visdom/server/handlers/base_handlers.py | 142 | except Exception as e: | CODE |
| LOW | py/visdom/tracking/core.py | 129 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 135 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 151 | except Exception as e: | CODE |
| LOW | py/visdom/tracking/core.py | 159 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 175 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 206 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 210 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 230 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 243 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 571 | except Exception: | CODE |
| LOW | py/visdom/tracking/core.py | 699 | except Exception: | CODE |
| MEDIUM | py/visdom/tracking/core.py | 172 | def _safe(key, fn): | CODE |
| LOW | py/visdom/tracking/graphs.py | 201 | except Exception as e: | CODE |
| LOW | py/visdom/tracking/graphs.py | 244 | except Exception as e: | CODE |
| MEDIUM | py/visdom/tracking/graphs.py | 198 | def wrapper(*args, **kwargs): | CODE |
| LOW | example/demo.py | 345 | except Exception as e: | CODE |
| MEDIUM | example/components/misc.py | 17 | print("Error message: ", err) | CODE |
| MEDIUM | example/components/misc.py | 102 | print("Error message: ", err) | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | py/visdom/__init__.py | 707 | CODE | |
| LOW | py/visdom/__init__.py | 902 | CODE | |
| LOW | py/visdom/__init__.py | 990 | CODE | |
| LOW | py/visdom/__init__.py | 1019 | CODE | |
| LOW | py/visdom/__init__.py | 1116 | CODE | |
| LOW | py/visdom/__init__.py | 2143 | CODE | |
| LOW | py/visdom/__init__.py | 2271 | CODE | |
| LOW | py/visdom/__init__.py | 2772 | CODE | |
| LOW | py/visdom/__init__.py | 3444 | CODE | |
| LOW | py/visdom/__init__.py | 3903 | CODE | |
| LOW | py/visdom/__init__.py | 903 | CODE | |
| LOW | py/visdom/loggers/keras.py | 91 | CODE | |
| LOW | py/visdom/loggers/xgboost.py | 269 | CODE | |
| LOW | py/visdom/experiments/query.py | 148 | CODE | |
| LOW | py/visdom/server/build.py | 18 | CODE | |
| LOW | py/visdom/server/run_server.py | 157 | CODE | |
| LOW | py/visdom/server/handlers/web_handlers.py | 177 | CODE | |
| LOW | py/visdom/server/handlers/web_handlers.py | 948 | CODE | |
| LOW | py/visdom/server/handlers/socket_handlers.py | 99 | CODE | |
| LOW | py/visdom/server/handlers/experiments_handler.py | 99 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 219 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 259 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 335 | CODE | |
| LOW | py/visdom/utils/server_utils.py | 711 | CODE | |
| LOW | py/visdom/data_model/json_store.py | 221 | CODE | |
| LOW | example/train_example.py | 25 | CODE | |
| LOW | example/components/properties.py | 22 | CODE | |
| LOW | example/components/properties.py | 26 | CODE | |
| LOW | example/components/text.py | 12 | CODE | |
| LOW | example/components/text.py | 17 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH⚡ | py/tests/test_experiment_search_paging.py | 247 | """Inf orders fine in Python but persists as null, so it counts as absent.""" | STRING |
| HIGH⚡ | py/tests/unit/shared_utils.py | 113 | """dumps() emits JSON null, never the non-standard NaN/Infinity tokens.""" | STRING |
| HIGH | py/visdom/server/handlers/web_handlers.py | 1272 | {"status": "not_implemented", "detail": "...", "suggestion": null} | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | py/tests/testutils/__init__.py | 29 | __all__ = [ | CODE |
| LOW | py/visdom/__init__.py | 129 | logger = logging.getLogger(__name__) | CODE |
| LOW | py/visdom/loggers/__init__.py | 11 | __all__ = ["VisdomLogger", "VisdomSklearnLogger"] | CODE |
| LOW | py/visdom/experiments/query.py | 73 | __all__ = [ | CODE |
| LOW | py/visdom/experiments/__init__.py | 50 | __all__ = [ | CODE |
| LOW | py/visdom/server/handlers/web_handlers.py | 70 | logger = logging.getLogger(__name__) | CODE |
| LOW | py/visdom/data_model/__init__.py | 12 | __all__ = ["DataStore", "JSONStore"] | CODE |
| LOW | py/visdom/tracking/__init__.py | 21 | __all__ = [ | CODE |
| LOW | py/visdom/tracking/core.py | 415 | def set_param(self, key: str, value: Any) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | py/tests/testutils/fakes.py | 72 | CODE | |
| LOW | py/visdom/__init__.py | 727 | CODE | |
| LOW | py/visdom/__init__.py | 3015 | CODE | |
| LOW | py/visdom/__init__.py | 3141 | CODE | |
| LOW | py/visdom/__init__.py | 3230 | CODE | |
| LOW | py/visdom/__init__.py | 3444 | CODE | |
| LOW | py/visdom/server/app.py | 81 | CODE | |
| LOW | py/visdom/server/run_server.py | 76 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | example/manual/visual_check.py | 245 | # Create a gradient image | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pyproject.toml | 1 | [tool.pytest.ini_options] | COMMENT |
| LOW | py/visdom/extra_deps/__init__.py | 1 | # Copyright 2017-present, The Visdom Authors | COMMENT |
| LOW | py/visdom/server/handlers/socket_handlers.py | 41 | COMMENT | |
| LOW | .github/scripts/run_new_tests.sh | 1 | #!/usr/bin/env bash | COMMENT |