Skip to content

Commit

Permalink
Merge pull request #11 from LaetitiaPapaxanthos/master
Browse files Browse the repository at this point in the history
Fixes imports in tests.
  • Loading branch information
LaetitiaPapaxanthos authored Feb 21, 2022
2 parents aeb4f40 + 2443fc7 commit 845d7ab
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions ott/geometry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

"""OTT ground geometries: Classes and cost functions to instantiate them."""
from . import costs
from . import low_rank
from . import ops

from .epsilon_scheduler import Epsilon
Expand Down
1 change: 1 addition & 0 deletions ott/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"""OTT tools: A set of tools to use OT in differentiable ML pipelines."""

#from . import plot
from . import gaussian_mixture
from . import sinkhorn_divergence
from . import soft_sort
from . import transport
16 changes: 16 additions & 0 deletions ott/tools/gaussian_mixture/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# coding=utf-8
# Copyright 2022 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, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""OTT tools: A set of tools to use OT in differentiable ML pipelines."""

0 comments on commit 845d7ab

Please sign in to comment.