Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ray / rllib / examples / connectors / euclidian_distance_based_curiosity.py
Size: Mime:
"""Placeholder for training with euclidian distance-based curiosity.

The actual script can be found at a different location (see code below).
"""

if __name__ == "__main__":
    import subprocess
    import sys

    # Forward to "python ../curiosity/[same script name].py [same options]"
    command = [sys.executable, "../curiosity/", sys.argv[0]] + sys.argv[1:]

    # Run the script.
    subprocess.run(command, capture_output=True)