python_code
stringlengths
0
4.04M
repo_name
stringlengths
7
58
file_path
stringlengths
5
147
# # Autogenerated by Thrift # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # @generated # from __future__ import absolute_import import six from thrift.util.Recursive import fix_spec from thrift.Thrift import * from thrift.protocol.TProtocol import TProtocolException import pprint import warn...
AutoCTR-main
gen-py/block_config/ttypes.py
AutoCTR-main
trainers/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import logging import torch from config...
AutoCTR-main
trainers/loss.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import logging import re import time imp...
AutoCTR-main
trainers/utils.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import logging import time import numpy ...
AutoCTR-main
trainers/simple_final.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import logging import time import numpy ...
AutoCTR-main
trainers/simple.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import sys sys.path.append('gen-py') im...
AutoCTR-main
scripts/final_fit.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import argparse import os import pandas as pd import math import numpy as np from sklearn.model_selection import StratifiedK...
AutoCTR-main
scripts/preprocess.py
AutoCTR-main
scripts/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import sys sys.path.append('gen-py') im...
AutoCTR-main
scripts/search.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE_CC-BY-NC4.0 file in the root directory of this source tree. import argparse import glob, json, os, re import tarfile, zipfile import urllib.request import xml.etree.Eleme...
belebele-main
assemble_training_set.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import os from setuptools import find_packages, setup REQUIRES = [ "matplotlib", "torch", ...
aepsych-main
setup.py
#!/usr/bin/env python3 # Copyright 2004-present Facebook. All Rights Reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from os import path from setuptools import find_packages, setup this_directory = path.abspath(path.dirname(__file__))...
aepsych-main
clients/python/setup.py
aepsych-main
clients/python/tests/__init__.py
#!/usr/bin/env python3 # Copyright 2004-present Facebook. All Rights Reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import json import unittest import uuid from unittest.mock import MagicMock, patch import torch from aepsych.acquisiti...
aepsych-main
clients/python/tests/test_client.py
#!/usr/bin/env python3 # Copyright 2004-present Facebook. All Rights Reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import json import socket import warnings from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union if TYPE_C...
aepsych-main
clients/python/aepsych_client/client.py
#!/usr/bin/env python3 # Copyright 2004-present Facebook. All Rights Reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from .client import AEPsychClient __all__ = ["AEPsychClient"]
aepsych-main
clients/python/aepsych_client/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import abc import ast import configparser import json import warnings from types import ModuleType fro...
aepsych-main
aepsych/config.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. __version__ = "0.4.0"
aepsych-main
aepsych/version.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import warnings from typing import Callable, Iterable, List, Optional, Union import matplotlib.pyplo...
aepsych-main
aepsych/plotting.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from gpytorch.likelihoods import BernoulliLikelihood, GaussianLikelihood from . import a...
aepsych-main
aepsych/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import time import warnings from copy import copy from typing im...
aepsych-main
aepsych/strategy.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import logging.config import os logger = logging.getLogger() def getLogger(level=lo...
aepsych-main
aepsych/utils_logging.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from collections.abc import Iterable from configparser import NoOptionError from typing import Dict, ...
aepsych-main
aepsych/utils.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import itertools import time from random import shuffle from typi...
aepsych-main
aepsych/benchmark/benchmark.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import itertools import logging import time import traceback from copy import deepcopy from pathlib i...
aepsych-main
aepsych/benchmark/pathos_benchmark.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from .benchmark import Benchmark, DerivedValue from .pathos_benchmark import PathosBenchmark, run_ben...
aepsych-main
aepsych/benchmark/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from functools import cached_property from typing import Any, Dict, Union import aepsych import nump...
aepsych-main
aepsych/benchmark/problem.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import io import math from typing import Callable import numpy as np import pandas as pd from scipy....
aepsych-main
aepsych/benchmark/test_functions.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import datetime import logging import os import uuid from contextlib import contextmanager from pathl...
aepsych-main
aepsych/database/db.py
aepsych-main
aepsych/database/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import logging im...
aepsych-main
aepsych/database/tables.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Any import torch from gpytorch.kernels.rbf_ke...
aepsych-main
aepsych/kernels/rbf_partial_grad.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
aepsych-main
aepsych/kernels/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. r""" """ from __future__ import annotations from typing import Optional import torch from aepsych....
aepsych-main
aepsych/acquisition/mutual_information.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Optional, Union import torch from aepsych.acquisition.objective import ProbitObje...
aepsych-main
aepsych/acquisition/lse.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Any, Dict, Optional, Tuple import torch from botorch.acquisition.objective impor...
aepsych-main
aepsych/acquisition/lookahead_utils.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import torch from botorch.posteriors import Posterior from botorc...
aepsych-main
aepsych/acquisition/rejection_sampler.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from ..config import Config from .lookahead import ApproxGlobalSUR, EAVC, GlobalMI, Globa...
aepsych-main
aepsych/acquisition/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Optional import torch from aepsych.acquisition.monotonic_rejection import Monoton...
aepsych-main
aepsych/acquisition/mc_posterior_variance.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from math import pi as _pi import torch inv_2pi = 1 / (2 * _pi) _neg_inv_sqrt2 = -1 / (2**0.5) d...
aepsych-main
aepsych/acquisition/bvn.py
#!/usr/bin/env python3 # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional, Tuple from ax.models.torch.botorch_modular.acquisit...
aepsych-main
aepsych/acquisition/acquisition.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Optional, Tuple, cast import numpy as np import torch from aepsych.utils import m...
aepsych-main
aepsych/acquisition/lookahead.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional import torch from botorch.acquisitio...
aepsych-main
aepsych/acquisition/monotonic_rejection.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional import torch from botorch.acquisitio...
aepsych-main
aepsych/acquisition/objective/objective.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional import torch from aepsych.config imp...
aepsych-main
aepsych/acquisition/objective/semi_p.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from ...config import Config from .objective import ( AEPsychObjective, FloorGumb...
aepsych-main
aepsych/acquisition/objective/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
aepsych-main
aepsych/means/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import torch from gpytorch.means.constant_mean import ConstantMea...
aepsych-main
aepsych/means/constant_partial_grad.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import argparse import io import logging import os import sys import threading import traceback impor...
aepsych-main
aepsych/server/server.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from .server import AEPsychServer __all__ = ["AEPsychServer"]
aepsych-main
aepsych/server/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import warnings import aepsych.utils_logging as utils_logging import pandas as pd fr...
aepsych-main
aepsych/server/replay.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import argparse import logging import os import sys import aepsych.database.db as db import aepsych....
aepsych-main
aepsych/server/utils.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import json import logging import select import socket import sys import aepsych.utils_logging as ut...
aepsych-main
aepsych/server/sockets.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging from collections.abc import Mapping import aepsych.utils_logging as utils_logging lo...
aepsych-main
aepsych/server/message_handlers/handle_ask.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from .handle_ask import handle_ask from .handle_can_model import handle_can_model from .handle_exit i...
aepsych-main
aepsych/server/message_handlers/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. def handle_finish_strategy(self, request): self.strat.finish() return f"finished strategy {s...
aepsych-main
aepsych/server/message_handlers/handle_finish_strategy.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging import numpy as np logger = utils_logg...
aepsych-main
aepsych/server/message_handlers/handle_query.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging logger = utils_logging.getLogger(loggin...
aepsych-main
aepsych/server/message_handlers/handle_get_config.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging logger = utils_logging.getLogger(loggi...
aepsych-main
aepsych/server/message_handlers/handle_can_model.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import io import logging from collections.abc import Iterable import aepsych.utils_logging as utils_...
aepsych-main
aepsych/server/message_handlers/handle_tell.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging logger = utils_logging.getLogger(loggi...
aepsych-main
aepsych/server/message_handlers/handle_exit.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging from typing import Any, Dict import aepsych.utils_logging as utils_logging logger =...
aepsych-main
aepsych/server/message_handlers/handle_info.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging logger = utils_logging.getLogger(loggi...
aepsych-main
aepsych/server/message_handlers/handle_resume.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging from aepsych.config import Config from...
aepsych-main
aepsych/server/message_handlers/handle_setup.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import logging import aepsych.utils_logging as utils_logging logger = utils_logging.getLogger(loggi...
aepsych-main
aepsych/server/message_handlers/handle_params.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from copy import deepcopy from typing import Any, Optional, Tuple...
aepsych-main
aepsych/models/semi_p.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import time from typing import Any, Dict, Optional, Union import gpytorch import numpy as np import t...
aepsych-main
aepsych/models/pairwise_probit.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import gpytorch import torch from aepsych.likelihoods import OrdinalLikelihood from aepsych.models im...
aepsych-main
aepsych/models/ordinal_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import warnings from typing import Dict, List, Optional, Sequence...
aepsych-main
aepsych/models/monotonic_rejection_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Any, List, Optional, Union import gpytorch im...
aepsych-main
aepsych/models/monotonic_projection_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from ..config import Config from .exact_gp import ContinuousRegressionGP, ExactGP from .g...
aepsych-main
aepsych/models/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Dict, Optional, Tuple, Union import gpytorch import numpy as np import torch fr...
aepsych-main
aepsych/models/variational_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from copy import deepcopy from typing import Optional, Tuple, Unio...
aepsych-main
aepsych/models/gp_classification.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from copy import deepcopy from typing import Dict, Optional, Tuple...
aepsych-main
aepsych/models/gp_regression.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional, Union import gpytorch import torch ...
aepsych-main
aepsych/models/derivative_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Optional import gpytorch import torch from ...
aepsych-main
aepsych/models/multitask_regression.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import List, Mapping, Optional, Tuple, Union import n...
aepsych-main
aepsych/models/utils.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import dataclasses import time from typing import Dict, List, Opt...
aepsych-main
aepsych/models/surrogate.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from aepsych.models.base import AEPsychModel from botorch.models import SingleTaskGP from gpytorch.m...
aepsych-main
aepsych/models/exact_gp.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import abc import time from typing import Any, Dict, List, Mappin...
aepsych-main
aepsych/models/base.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Optional import torch from aepsych.acquisition.objective import AEPsychObjective,...
aepsych-main
aepsych/likelihoods/semi_p.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Callable, Optional import gpytorch import torch from gpytorch.likelihoods import ...
aepsych-main
aepsych/likelihoods/ordinal.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from ..config import Config from .bernoulli import BernoulliObjectiveLikelihood from .ord...
aepsych-main
aepsych/likelihoods/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Callable import torch from aepsych.config import Config from gpytorch.likelihoods ...
aepsych-main
aepsych/likelihoods/bernoulli.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import warnings from typing import Optional, Union import numpy as np import torch from aepsych.conf...
aepsych-main
aepsych/generators/manual_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import warnings from aepsych.config import Config from aepsych.generators import OptimizeAcqfGenerat...
aepsych-main
aepsych/generators/pairwise_optimize_acqf_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Dict, Optional, Union import numpy as np impor...
aepsych-main
aepsych/generators/sobol_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import warnings from aepsych.config import Config from .sobol_generator import SobolGenerator cla...
aepsych-main
aepsych/generators/pairwise_sobol_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Type import torch from aepsych.acquisition.objective.semi_p import SemiPThreshold...
aepsych-main
aepsych/generators/semi_p.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Any, Dict, Optional, Sequence import torch from aepsych.acquisition.monotonic_rej...
aepsych-main
aepsych/generators/monotonic_rejection_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import sys from ..config import Config from .epsilon_greedy_generator import EpsilonGreedyGenerator ...
aepsych-main
aepsych/generators/__init__.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations import time from inspect import signature from typing import Any, c...
aepsych-main
aepsych/generators/optimize_acqf_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import List, Optional, Type import numpy as np import torch from aepsych.acquisition.obj...
aepsych-main
aepsych/generators/monotonic_thompson_sampler_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch from aepsych.config import Config from ..models.base import ModelPro...
aepsych-main
aepsych/generators/epsilon_greedy_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from __future__ import annotations from typing import Dict from ax.modelbridge import Models from a...
aepsych-main
aepsych/generators/multi_outcome_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Dict, Optional, Union import numpy as np import torch from aepsych.config import ...
aepsych-main
aepsych/generators/random_generator.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import abc from inspect import signature from typing import Any, Dict, Generic, Protocol, runtime_check...
aepsych-main
aepsych/generators/base.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Any, Dict from ax.core.experiment import Experiment from ax.modelbridge.completio...
aepsych-main
aepsych/generators/completion_criterion/min_asks.py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from typing import Any, Dict from aepsych.config import Config, ConfigurableMixin from ax.core impor...
aepsych-main
aepsych/generators/completion_criterion/run_indefinitely.py