aiexperiments-ai-duet/server/magenta/__init__.py

42 lines
1.5 KiB
Python
Raw Normal View History

2016-11-11 18:53:51 +00:00
# Copyright 2016 Google Inc. 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 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.
r"""Pulls in all magenta libraries that are in the public API.
To regenerate this list based on the py_library dependencies of //magenta:
bazel query 'kind(py_library, deps(//magenta))' | \
grep '//magenta' | \
egrep -v "/([^:/]+):\1$" | \
sed -e 's/\/\//import /' -e 's/\//./' -e 's/:/./' -e 's/py_pb2/pb2/' | \
sort
"""
# import magenta.common.sequence_example_lib
# import magenta.common.testing_lib
# import magenta.common.tf_lib
# import magenta.music.melodies_lib
# import magenta.music.midi_io
# import magenta.music.note_sequence_io
# import magenta.music.sequence_generator
# import magenta.music.sequence_generator_bundle
# import magenta.music.sequences_lib
# import magenta.music.testing_lib
# import magenta.pipelines.dag_pipeline
# import magenta.pipelines.pipeline
# import magenta.pipelines.pipelines_common
# import magenta.pipelines.statistics
# import magenta.protobuf.generator_pb2
# import magenta.protobuf.music_pb2