{"id":18028496,"url":"https://github.com/interactivetech/semi_supervised_learning_poc","last_synced_at":"2025-07-25T05:32:08.785Z","repository":{"id":61609736,"uuid":"545021831","full_name":"interactivetech/semi_supervised_learning_poc","owner":"interactivetech","description":"POC demonstrating Semi Supervised Learning on Vision, NLP, and Cybersecurity applications","archived":false,"fork":false,"pushed_at":"2022-10-20T02:34:40.000Z","size":706,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-07T10:02:11.089Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/interactivetech.png","metadata":{"files":{"readme":"README.ipynb","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}},"created_at":"2022-10-03T16:41:17.000Z","updated_at":"2023-03-08T00:47:11.000Z","dependencies_parsed_at":"2023-01-20T05:20:18.302Z","dependency_job_id":null,"html_url":"https://github.com/interactivetech/semi_supervised_learning_poc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/interactivetech/semi_supervised_learning_poc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactivetech%2Fsemi_supervised_learning_poc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactivetech%2Fsemi_supervised_learning_poc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactivetech%2Fsemi_supervised_learning_poc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactivetech%2Fsemi_supervised_learning_poc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/interactivetech","download_url":"https://codeload.github.com/interactivetech/semi_supervised_learning_poc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/interactivetech%2Fsemi_supervised_learning_poc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266961868,"owners_count":24012985,"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-07-25T02:00:09.625Z","response_time":70,"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-30T08:42:21.544Z","updated_at":"2025-07-25T05:32:08.758Z","avatar_url":"https://github.com/interactivetech.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"\u003c!-- language: lang-none --\u003e\\n\",\n    \"\\n\",\n    \"    ██████╗ ███████╗████████╗ \\n\",\n    \"    ██╔══██╗██╔════╝╚══██╔══╝ \\n\",\n    \"    ██║  ██║█████╗     ██║    \\n\",\n    \"    ██║  ██║██╔══╝     ██║    \\n\",\n    \"    ██████╔╝███████╗   ██║    \\n\",\n    \"    ╚═════╝ ╚══════╝   ╚═╝    \\n\",\n    \"    \\n\",\n    \"    Deep Learning Training Platform\\n\",\n    \"    Determined AI ©️ 2020\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# JupyterLab Notebooks in Determined\\n\",\n    \"\\n\",\n    \"Determined makes managing the environment and resources of JupyterLab easy by using containerized instances.\\n\",\n    \"\\n\",\n    \"## Persistence\\n\",\n    \"\\n\",\n    \"Users should save any relevant notebook outputs to shared_fs directory to ensure their work is persisted.\\n\",\n    \"\\n\",\n    \"## Idle Timeout\\n\",\n    \"\\n\",\n    \"JupyterLab Notebooks in Determined have a configurable timeout that will automatically shut down the notebook instance\\n\",\n    \"after the desired timeout period if no kernels or terminal are running. This can be set via the `idle_timeout` key in the notebook configuration.\\n\",\n    \"\\n\",\n    \"**if you open a Notebook file it might open a kernel for you, and the kernels and the terminals will not be shut down automatically.\\n\",\n    \"You need to manually shut down the kernels to make idle timeout effective.**\\n\",\n    \"\\n\",\n    \"## Environment\\n\",\n    \"\\n\",\n    \"Run the following code to print out the environment information.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import subprocess\\n\",\n    \"\\n\",\n    \"try: \\n\",\n    \"    print(subprocess.check_output(\\\"nvidia-smi\\\", encoding=\\\"utf-8\\\"))\\n\",\n    \"except (FileNotFoundError, subprocess.CalledProcessError):\\n\",\n    \"    import psutil\\n\",\n    \"    print(\\\"No GPUs available. Number of CPUs: \\\", psutil.cpu_count())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import tensorflow\\n\",\n    \"from tensorflow import keras\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"print(\\\"TensorFlow version: \\\", tensorflow.__version__)\\n\",\n    \"print(\\\"Keras version: \\\", keras.__version__)\\n\",\n    \"print(\\\"PyTorch version: \\\", torch.__version__)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.13\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteractivetech%2Fsemi_supervised_learning_poc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finteractivetech%2Fsemi_supervised_learning_poc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteractivetech%2Fsemi_supervised_learning_poc/lists"}