repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/refs/secrets/gkms.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:07.955268 | # Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
"gkms secrets module"
import base64
import logging
import warnings
import googleapiclient.discovery as gcloud
from kapitan import cached
from kapitan.erro... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inputs/kustomize.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:08.146603 | #!/usr/bin/env python3
# Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
"""Kustomize implementation for Kapitan.
This module provides a Kustomize implementation for rendering overlays.
"""
import logging... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inventory/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:08.221905 | from kapitan.utils import StrEnum
from .inventory import Inventory, InventoryError, InventoryTarget
class InventoryBackends(StrEnum):
"""
Enumeration of available inventory backends.
"""
RECLASS = "reclass"
RECLASS_RS = "reclass-rs"
OMEGACONF = "omegaconf"
DEFAULT = RECLASS
def load_re... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inputs/remove.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:08.252334 | #!/usr/bin/env python3
# Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
import logging
import os
import shutil
from kapitan.inputs.base import InputType
from kapitan.inventory.model.input_types import Kap... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/refs/secrets/gpg.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:08.253019 | # Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
"gpg secrets module"
import base64
import logging
import time
import gnupg
from kapitan import cached
from kapitan.errors import KapitanError
from kapitan... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inventory/backends/omegaconf/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:08.328176 | #!/usr/bin/env python3
# Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
import logging
import multiprocessing as mp
import os
import time
from functools import singledispatch
import yaml
from cachetools i... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inputs/cuelang.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:13.130050 | import logging
import os
import shutil
import subprocess
import tempfile
import yaml
from kapitan.errors import KustomizeTemplateError
from kapitan.inputs.base import InputType
from kapitan.inventory.model.input_types import KapitanInputTypeCuelangConfig
logger = logging.getLogger(__name__)
class Cuelang(InputTyp... |
kapicorp/kapitan | https://github.com/kapicorp/kapitan | null | null | null | null | 1,909 | null | null | apache-2.0 | null | null | null | null | null | null | null | kapitan/inputs/external.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:13.538718 | #!/usr/bin/env python3
# Copyright 2019 The Kapitan Authors
# SPDX-FileCopyrightText: 2020 The Kapitan Authors <kapitan-admins@googlegroups.com>
#
# SPDX-License-Identifier: Apache-2.0
import logging
import os
import re
import subprocess
from kapitan.inputs.base import InputType
from kapitan.inventory.model.input_ty... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/metric_api.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.816493 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/grouping.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.817722 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/datasets.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.819056 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/metadata.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.821328 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/model_api.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.824283 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/benchmark_api.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.834083 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/metrics.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.842114 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/benchmarks.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.846023 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/dataset_api.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:17.967651 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/paths.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.427379 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/models.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.458954 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/sharding.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.482690 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/plot.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.488304 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/plotter_api.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.501657 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/run.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.515909 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/build_docs.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.520822 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/tag.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.527390 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/registry.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.535391 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | benchmark/plotters.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:18.551076 | # Copyright 2022 The GPflow Contributors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/GPLVM.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.284006 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/changepoints.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.285130 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/coregionalisation.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.286212 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/convolutional.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.315589 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/generate_module_rst.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.317232 | # Copyright 2019 GPflow Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/gps_for_big_data.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.318139 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/heteroskedastic.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.319061 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.6.0
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/fast_predictions.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.320291 | # ---
# jupyter:
# jupytext:
# text_representation:
# extension: .py
# format_name: light
# format_version: '1.5'
# jupytext_version: 1.9.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# + [markdown] id="eYrSpUncKGSk"
# # Faster predictions... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/mcmc.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:19.321399 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.13.8
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/multiclass_classification.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.368787 | # Function to plot the predictions of the trained
# multi-class classification model in multiclass_classification.ipynb
import matplotlib.pyplot as plt
import numpy as np
colors = ["#1f77b4", "#ff7f0e", "#2ca02c"]
def plot_posterior_predictions(m, X, Y):
f = plt.figure(figsize=(12, 6))
a1 = f.add_axes([0.0... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/basic_usage.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.370555 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/ordinal_regression.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.371653 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/multioutput.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.374040 | # -*- coding: utf-8 -*-
# ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.4.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/multiclass_classification.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.375319 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/variational_fourier_features.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.376833 | # -*- coding: utf-8 -*-
# ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.6.0
# kernelspec:
# display_name: Python 3
# language: python
# name: python3... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/natural_gradients.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.379390 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/advanced/varying_noise.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.409284 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.13.8
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/kernels.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.980805 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/large_data.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.982694 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/mean_functions.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.995728 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/monitoring.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.997086 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/conf.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:20.997724 | # Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
from pathlib import Path
from typing import Sequence
# -- Path setup ------------------... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/saving_and_loading.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.016829 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-c... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/tailor/gp_nn.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.038516 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/tailor/external-mean-function.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.068472 | # -*- coding: utf-8 -*-
# ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/parameters_and_their_optimisation.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.145302 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/getting_started/classification_and_other_data_distributions.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.221977 | # ---
# jupyter:
# jupytext:
# formats: py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %%
# remove-cell
# pylin... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/tailor/mixture_density_network.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.570844 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.14.1
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/tailor/mdn_plotting.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.600926 | import numpy as np
from scipy.stats import norm
def make_grid(xx, yy):
"""
Returns two n-by-n matrices. The first one contains all the x values
and the second all the y values of a cartesian product between `xx` and `yy`.
"""
n = len(xx)
xx, yy = np.meshgrid(xx, yy)
grid = np.array([xx.rav... |
GPflow/GPflow | https://github.com/GPflow/GPflow | null | null | null | null | 1,907 | null | null | apache-2.0 | null | null | null | null | null | null | null | doc/sphinx/notebooks/tailor/kernel_design.pct.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:21.601439 | # ---
# jupyter:
# jupytext:
# formats: ipynb,.pct.py:percent
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.3.3
# kernelspec:
# display_name: Python 3
# language: python
# name: python3
# ---
# %% [markdown]
... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/lip_tracking/VisualizeLip.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:23.942404 | import numpy as np
import cv2
import dlib
import math
import sys
import pickle
import argparse
import os
import skvideo.io
"""
PART1: Construct the argument parse and parse the arguments
"""
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--input", required=True,
help="path to input video file")... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/nets/nets_factory.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:23.943846 | # Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable ... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/roc_curve/PlotPR.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.096230 | # Siamese Architecture for face recognition
import random
import numpy as np
import time
import tensorflow as tf
import math
import pdb
import sys
import scipy.io as sio
from sklearn import *
import matplotlib.pyplot as plt
def Plot_PR_Fn(label,distance,phase):
precision, recall, thresholds = metrics.precision_r... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/nets/lipread_mouth.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.098647 | # Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable ... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/auxiliary/losses.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.100656 | """
Contrastive cost
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from tensorflow.contrib.framework.python.ops import add_arg_scope
from tensorflow.python.framework import ops
from tensorflow.python.ops import array_ops
from tensorflow.python.ops impo... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/roc_curve/PlotHIST.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.101146 | # Siamese Architecture for face recognition
import random
import numpy as np
import time
import tensorflow as tf
import math
import pdb
import sys
import scipy.io as sio
from sklearn import *
import matplotlib.pyplot as plt
def Plot_HIST_Fn(label,distance, phase, num_bins = 50):
dissimilarity = distance[:]
g... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/speech-input/input_feature.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.102463 | import os
from scipy.io.wavfile import read
import scipy.io.wavfile as wav
import subprocess as sp
import numpy as np
import argparse
import random
import os
import sys
from random import shuffle
import speechpy
import datetime
######################################
####### Define the dataset class #####
############... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/nets/lipread_speech.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.249311 | # Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable ... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/roc_curve/calculate_roc.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.717906 | # Siamese Architecture for face recognition
import random
import numpy as np
import time
import tensorflow as tf
import math
import pdb
import sys
import scipy.io as sio
from sklearn import *
def calculate_eer_auc_ap(label,distance):
fpr, tpr, thresholds = metrics.roc_curve(label, -distance, pos_label=1)
AUC... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/roc_curve/PlotROC.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.947337 | # Siamese Architecture for face recognition
import random
import numpy as np
import time
import tensorflow as tf
import math
import pdb
import sys
import scipy.io as sio
from sklearn import *
import matplotlib.pyplot as plt
def Plot_ROC_Fn(label,distance,phase):
fpr, tpr, thresholds = metrics.roc_curve(label, -... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:24.948445 | from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import tensorflow as tf
import sys
import numpy as np
from sklearn.model_selection import KFold
from tensorflow.python.ops import control_flow_ops
from nets import nets_factory
from auxiliary import losses
fro... |
astorfi/lip-reading-deeplearning | https://github.com/astorfi/lip-reading-deeplearning | null | null | null | null | 1,903 | null | null | apache-2.0 | null | null | null | null | null | null | null | code/training_evaluation/train.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:25.151078 | from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import tensorflow as tf
import sys
import numpy as np
from sklearn.model_selection import KFold
from tensorflow.python.ops import control_flow_ops
from nets import nets_factory
from auxiliary import losses
fro... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | conftest.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.541431 | # Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | hatch_build.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.558284 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.563186 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/colab_utils.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.564722 | # Copyright 2025 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | docs/source/conf.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.566150 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | scripts/process_gtf.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.569569 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/colab_utils_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.570433 | # Copyright 2025 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | scripts/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.588563 | # Copyright 2026 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.601318 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | scripts/process_gtf_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:27.602623 | # Copyright 2026 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/fold_intervals.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.126397 | # Copyright 2025 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/fold_intervals_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.140118 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/gene_annotation.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.168757 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/ontology.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.173749 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/genome.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.174945 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/junction_data.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.184317 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/gene_annotation_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.185794 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/genome_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.203490 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/junction_data_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.220271 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/ontology_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:28.249392 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/interpretation/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.204448 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/models/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.206519 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/interpretation/ism.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.208009 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/interpretation/ism_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.210055 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/models/dna_client.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.211464 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/transcript.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.211996 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/track_data.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:29.854525 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/models/dna_client_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:30.137988 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/models/dna_model_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:30.262129 | # Copyright 2025 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/models/dna_output_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:30.302987 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
google-deepmind/alphagenome | https://github.com/google-deepmind/alphagenome | null | null | null | null | 1,902 | null | null | apache-2.0 | null | null | null | null | null | null | null | src/alphagenome/data/track_data_test.py | null | null | null | null | null | null | Python | 2026-05-04T02:49:30.304701 | # Copyright 2024 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.