after_merge
stringlengths
28
79.6k
before_merge
stringlengths
20
79.6k
url
stringlengths
38
71
full_traceback
stringlengths
43
922k
traceback_type
stringclasses
555 values
def build(preprocessor_step_config): """Builds preprocessing step based on the configuration. Args: preprocessor_step_config: PreprocessingStep configuration proto. Returns: function, argmap: A callable function and an argument map to call function with. Raises: ...
def build(preprocessor_step_config): """Builds preprocessing step based on the configuration. Args: preprocessor_step_config: PreprocessingStep configuration proto. Returns: function, argmap: A callable function and an argument map to call function with. Raises: ...
https://github.com/tensorflow/models/issues/2753
Traceback (most recent call last): File "../gpu-env/lib/python3.5/site-packages/object_detection/train.py", line 163, in <module> tf.app.run() File "/home/dan/gpu-env/lib/python3.5/site-packages/tensorflow/python/platform/app.py", line 48, in run _sys.exit(main(_sys.argv[:1] + flags_passthrough)) File "../gpu-env/lib/p...
ValueError
def train(): """Train CIFAR-10 for a number of steps.""" with tf.Graph().as_default(), tf.device("/cpu:0"): # Create a variable to count the number of train() calls. This equals the # number of batches processed * FLAGS.num_gpus. global_step = tf.get_variable( "global_step", ...
def train(): """Train CIFAR-10 for a number of steps.""" with tf.Graph().as_default(), tf.device("/cpu:0"): # Create a variable to count the number of train() calls. This equals the # number of batches processed * FLAGS.num_gpus. global_step = tf.get_variable( "global_step", ...
https://github.com/tensorflow/models/issues/901
# python cifar10_multi_gpu_train.py --num_gpus=4 I tensorflow/stream_executor/dso_loader.cc:125] successfully opened CUDA library libcublas.so.8.0 locally I tensorflow/stream_executor/dso_loader.cc:125] successfully opened CUDA library libcudnn.so.5 locally I tensorflow/stream_executor/dso_loader.cc:125] successfully o...
AttributeError
def __call__(self, direction, factor, values): angles_deg = np.asarray(values) / factor damping_ratios = np.cos((180 - angles_deg) * np.pi / 180) ret = ["%.2f" % val for val in damping_ratios] return ret
def __call__(self, direction, factor, values): angles_deg = values / factor damping_ratios = np.cos((180 - angles_deg) * np.pi / 180) ret = ["%.2f" % val for val in damping_ratios] return ret
https://github.com/python-control/python-control/issues/457
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-7-4e6a52bd77da> in <module> 1 import control 2 g = control.tf(1, [1,1]) ----> 3 control.pzmap(g, grid=True) ~/src/python-control/control/pzmap.py in pzm...
AttributeError
def __call__(self, transform_xy, x1, y1, x2, y2): x, y = np.meshgrid(np.linspace(x1, x2, self.nx), np.linspace(y1, y2, self.ny)) lon, lat = transform_xy(np.ravel(x), np.ravel(y)) with np.errstate(invalid="ignore"): if self.lon_cycle is not None: lon0 = np.nanmin(lon) # Chang...
def __call__(self, transform_xy, x1, y1, x2, y2): x_, y_ = np.linspace(x1, x2, self.nx), np.linspace(y1, y2, self.ny) x, y = np.meshgrid(x_, y_) lon, lat = transform_xy(np.ravel(x), np.ravel(y)) with np.errstate(invalid="ignore"): if self.lon_cycle is not None: lon0 = np.nanmin(lon)...
https://github.com/python-control/python-control/issues/457
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-7-4e6a52bd77da> in <module> 1 import control 2 g = control.tf(1, [1,1]) ----> 3 control.pzmap(g, grid=True) ~/src/python-control/control/pzmap.py in pzm...
AttributeError
def pzmap(sys, plot=None, grid=None, title="Pole Zero Map", **kwargs): """ Plot a pole/zero map for a linear system. Parameters ---------- sys: LTI (StateSpace or TransferFunction) Linear system for which poles and zeros are computed. plot: bool, optional If ``True`` a graph is ...
def pzmap(sys, plot=True, grid=False, title="Pole Zero Map", **kwargs): """ Plot a pole/zero map for a linear system. Parameters ---------- sys: LTI (StateSpace or TransferFunction) Linear system for which poles and zeros are computed. plot: bool, optional If ``True`` a graph is...
https://github.com/python-control/python-control/issues/457
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-7-4e6a52bd77da> in <module> 1 import control 2 g = control.tf(1, [1,1]) ----> 3 control.pzmap(g, grid=True) ~/src/python-control/control/pzmap.py in pzm...
AttributeError
def __str__(self): """String representation of an input/output system""" str = "System: " + (self.name if self.name else "(None)") + "\n" str += "Inputs (%s): " % self.ninputs for key in self.input_index: str += key + ", " str += "\nOutputs (%s): " % self.noutputs for key in self.output_...
def __str__(self): """String representation of an input/output system""" str = "System: " + (self.name if self.name else "(none)") + "\n" str += "Inputs (%d): " % self.ninputs for key in self.input_index: str += key + ", " str += "\nOutputs (%d): " % self.noutputs for key in self.output_...
https://github.com/python-control/python-control/issues/329
sys = ctl.NonlinearIOSystem(lambda t, x, u, params: x) print(sys) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-4-85c64df40808> in <module>() ----> 1 print(sys) /home/arnold/pythonBox/control_dev/p...
TypeError
def __add__(sys1, sys2): """Add two input/output systems (parallel interconnection)""" # TODO: Allow addition of scalars and matrices if not isinstance(sys2, InputOutputSystem): raise ValueError("Unknown I/O system object ", sys2) elif isinstance(sys1, StateSpace) and isinstance(sys2, StateSpace...
def __add__(sys1, sys2): """Add two input/output systems (parallel interconnection)""" # TODO: Allow addition of scalars and matrices if not isinstance(sys2, InputOutputSystem): raise ValueError("Unknown I/O system object ", sys2) elif isinstance(sys1, StateSpace) and isinstance(sys2, StateSpace...
https://github.com/python-control/python-control/issues/329
sys = ctl.NonlinearIOSystem(lambda t, x, u, params: x) print(sys) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-4-85c64df40808> in <module>() ----> 1 print(sys) /home/arnold/pythonBox/control_dev/p...
TypeError
def __init__( self, syslist, connections=[], inplist=[], outlist=[], inputs=None, outputs=None, states=None, params={}, dt=None, name=None, ): """Create an I/O system from a list of systems + connection info. The InterconnectedSystem class is used to represent an inp...
def __init__( self, syslist, connections=[], inplist=[], outlist=[], inputs=None, outputs=None, states=None, params={}, dt=None, name=None, ): """Create an I/O system from a list of systems + connection info. The InterconnectedSystem class is used to represent an inp...
https://github.com/python-control/python-control/issues/329
sys = ctl.NonlinearIOSystem(lambda t, x, u, params: x) print(sys) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-4-85c64df40808> in <module>() ----> 1 print(sys) /home/arnold/pythonBox/control_dev/p...
TypeError
def __init__( self, node_ip_address, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Pub...
def __init__( self, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Public attributes are ac...
https://github.com/ray-project/ray/issues/11940
2020-11-11 14:13:37,114 WARNING worker.py:1111 -- The agent on node *** failed with the following error: Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/new_dashboard/agent.py", line 298, in <module> loop.run_until_complete(agent.run()) File "/usr/lib/python3.6/asyncio/base_events.py...
grpc.experimental.aio._call.AioRpcError
def start_raylet( redis_address, node_ip_address, node_manager_port, raylet_name, plasma_store_name, worker_path, temp_dir, session_dir, log_dir, resource_spec, plasma_directory, object_store_memory, min_worker_port=None, max_worker_port=None, worker_port_list...
def start_raylet( redis_address, node_ip_address, node_manager_port, raylet_name, plasma_store_name, worker_path, temp_dir, session_dir, log_dir, resource_spec, plasma_directory, object_store_memory, min_worker_port=None, max_worker_port=None, worker_port_list...
https://github.com/ray-project/ray/issues/11940
2020-11-11 14:13:37,114 WARNING worker.py:1111 -- The agent on node *** failed with the following error: Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/new_dashboard/agent.py", line 298, in <module> loop.run_until_complete(agent.run()) File "/usr/lib/python3.6/asyncio/base_events.py...
grpc.experimental.aio._call.AioRpcError
def __init__( self, redis_address, autoscaling_config, redis_password=None, prefix_cluster_info=False, ): # Initialize the Redis clients. ray.state.state._initialize_global_state( redis_address, redis_password=redis_password ) self.redis = ray._private.services.create_redis_c...
def __init__( self, redis_address, autoscaling_config, redis_password=None, prefix_cluster_info=False, ): # Initialize the Redis clients. ray.state.state._initialize_global_state( redis_address, redis_password=redis_password ) self.redis = ray._private.services.create_redis_c...
https://github.com/ray-project/ray/issues/14350
In [1]: import ray In [2]: ray.init() 2021-02-25 22:41:24,961 INFO services.py:1226 -- View the Ray dashboard at http://127.0.0.1:8265 2021-02-25 22:41:26,775 WARNING worker.py:1063 -- The autoscaler failed with the following error: Traceback (most recent call last): File "/home/lxy/git_repository/ray/python/ray/monit...
grpc._channel._InactiveRpcError
def terminate_node(self, node_id): node = self._get_cached_node(node_id) if self.cache_stopped_nodes: if node.spot_instance_request_id: cli_logger.print( "Terminating instance {} " + cf.dimmed("(cannot stop spot instances, only terminate)"), no...
def terminate_node(self, node_id): node = self._get_cached_node(node_id) if self.cache_stopped_nodes: if node.spot_instance_request_id: cli_logger.print( "Terminating instance {} " + cf.dimmed("(cannot stop spot instances, only terminate)"), no...
https://github.com/ray-project/ray/issues/14264
2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Removing 1 nodes of type cpu_48_spot (idle). 2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Adding 1 nodes of type cpu_48_spot. 2021-02-17 14:55:40,430 INFO load_metrics.py:102 – LoadMetrics: Removed mapping: 172.31.23.116 - 1613573430.7000167 2...
KeyError
def terminate_nodes(self, node_ids): if not node_ids: return if self.cache_stopped_nodes: spot_ids = [] on_demand_ids = [] for node_id in node_ids: if self._get_cached_node(node_id).spot_instance_request_id: spot_ids += [node_id] else: ...
def terminate_nodes(self, node_ids): if not node_ids: return if self.cache_stopped_nodes: spot_ids = [] on_demand_ids = [] for node_id in node_ids: if self._get_cached_node(node_id).spot_instance_request_id: spot_ids += [node_id] else: ...
https://github.com/ray-project/ray/issues/14264
2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Removing 1 nodes of type cpu_48_spot (idle). 2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Adding 1 nodes of type cpu_48_spot. 2021-02-17 14:55:40,430 INFO load_metrics.py:102 – LoadMetrics: Removed mapping: 172.31.23.116 - 1613573430.7000167 2...
KeyError
def _print(self, msg: str, _level_str: str = "INFO", _linefeed: bool = True): """Proxy for printing messages. Args: msg (str): Message to print. linefeed (bool): If `linefeed` is `False` no linefeed is printed at the end of the message. """ if self.pretty: ...
def _print(self, msg: str, _level_str: str = "INFO", _linefeed: bool = True): """Proxy for printing messages. Args: msg (str): Message to print. linefeed (bool): If `linefeed` is `False` no linefeed is printed at the end of the message. """ if self.pretty: ...
https://github.com/ray-project/ray/issues/14264
2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Removing 1 nodes of type cpu_48_spot (idle). 2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Adding 1 nodes of type cpu_48_spot. 2021-02-17 14:55:40,430 INFO load_metrics.py:102 – LoadMetrics: Removed mapping: 172.31.23.116 - 1613573430.7000167 2...
KeyError
def _handle_failure(self, error): logger.exception("Error in monitor loop") if ( self.autoscaler is not None and os.environ.get("RAY_AUTOSCALER_FATESHARE_WORKERS", "") == "1" ): self.autoscaler.kill_workers() # Take down autoscaler workers if necessary. self.destroy_a...
def _handle_failure(self, error): logger.exception("Error in monitor loop") if self.autoscaler is not None: self.autoscaler.kill_workers() # Take down autoscaler workers if necessary. self.destroy_autoscaler_workers() # Something went wrong, so push an error to all current and futur...
https://github.com/ray-project/ray/issues/14264
2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Removing 1 nodes of type cpu_48_spot (idle). 2021-02-17 14:55:34,817 INFO monitor.py:207 – :event_summary:Adding 1 nodes of type cpu_48_spot. 2021-02-17 14:55:40,430 INFO load_metrics.py:102 – LoadMetrics: Removed mapping: 172.31.23.116 - 1613573430.7000167 2...
KeyError
def close_all_files(self): """Close all open files (so that we can open more).""" while len(self.open_file_infos) > 0: file_info = self.open_file_infos.pop(0) file_info.file_handle.close() file_info.file_handle = None try: # Test if the worker process that generated t...
def close_all_files(self): """Close all open files (so that we can open more).""" while len(self.open_file_infos) > 0: file_info = self.open_file_infos.pop(0) file_info.file_handle.close() file_info.file_handle = None try: # Test if the worker process that generated t...
https://github.com/ray-project/ray/issues/12565
2020-12-02 07:26:37,751 WARNING worker.py:1011 -- The log monitor on node ip-172-31-18-179 failed with the following error: Traceback (most recent call last): File "/home/ubuntu/anaconda3/lib/python3.7/site-packages/ray/log_monitor.py", line 354, in <module> log_monitor.run() File "/home/ubuntu/anaconda3/lib/python3.7/...
TypeError
def update_log_filenames(self): """Update the list of log files to monitor.""" # output of user code is written here log_file_paths = glob.glob(f"{self.logs_dir}/worker*[.out|.err]") # segfaults and other serious errors are logged here raylet_err_paths = glob.glob(f"{self.logs_dir}/raylet*.err") ...
def update_log_filenames(self): """Update the list of log files to monitor.""" # output of user code is written here log_file_paths = glob.glob(f"{self.logs_dir}/worker*[.out|.err]") # segfaults and other serious errors are logged here raylet_err_paths = glob.glob(f"{self.logs_dir}/raylet*.err") ...
https://github.com/ray-project/ray/issues/12565
2020-12-02 07:26:37,751 WARNING worker.py:1011 -- The log monitor on node ip-172-31-18-179 failed with the following error: Traceback (most recent call last): File "/home/ubuntu/anaconda3/lib/python3.7/site-packages/ray/log_monitor.py", line 354, in <module> log_monitor.run() File "/home/ubuntu/anaconda3/lib/python3.7/...
TypeError
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
def setup_static_dir(): build_dir = os.path.join( os.path.dirname(os.path.abspath(__file__)), "client", "build" ) module_name = os.path.basename(os.path.dirname(__file__)) if not os.path.isdir(build_dir): raise FrontendNotFoundError( errno.ENOENT, "Dashboard build...
def setup_static_dir(): build_dir = os.path.join( os.path.dirname(os.path.abspath(__file__)), "client", "build" ) module_name = os.path.basename(os.path.dirname(__file__)) if not os.path.isdir(build_dir): raise OSError( errno.ENOENT, "Dashboard build directory not...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
def __init__( self, host, port, port_retries, redis_address, redis_password=None, log_dir=None ): self.dashboard_head = dashboard_head.DashboardHead( http_host=host, http_port=port, http_port_retries=port_retries, redis_address=redis_address, redis_password=redis_password...
def __init__(self, host, port, redis_address, redis_password=None, log_dir=None): self.dashboard_head = dashboard_head.DashboardHead( http_host=host, http_port=port, redis_address=redis_address, redis_password=redis_password, log_dir=log_dir, ) # Setup Dashboard Rout...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
def __init__( self, http_host, http_port, http_port_retries, redis_address, redis_password, log_dir, ): # NodeInfoGcsService self._gcs_node_info_stub = None self._gcs_rpc_error_counter = 0 # Public attributes are accessible for all head modules. # Walkaround for issue: ht...
def __init__(self, http_host, http_port, redis_address, redis_password, log_dir): # NodeInfoGcsService self._gcs_node_info_stub = None self._gcs_rpc_error_counter = 0 # Public attributes are accessible for all head modules. self.http_host = http_host self.http_port = http_port self.redis_add...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
async def run(self): # Create an aioredis client for all modules. try: self.aioredis_client = await dashboard_utils.get_aioredis_client( self.redis_address, self.redis_password, dashboard_consts.CONNECT_REDIS_INTERNAL_SECONDS, dashboard_consts.RETRY_REDIS_...
async def run(self): # Create an aioredis client for all modules. try: self.aioredis_client = await dashboard_utils.get_aioredis_client( self.redis_address, self.redis_password, dashboard_consts.CONNECT_REDIS_INTERNAL_SECONDS, dashboard_consts.RETRY_REDIS_...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
def start_dashboard( require_dashboard, host, redis_address, temp_dir, logdir, port=ray_constants.DEFAULT_DASHBOARD_PORT, stdout_file=None, stderr_file=None, redis_password=None, fate_share=None, max_bytes=0, backup_count=0, ): """Start a dashboard process. Args:...
def start_dashboard( require_dashboard, host, redis_address, temp_dir, logdir, port=ray_constants.DEFAULT_DASHBOARD_PORT, stdout_file=None, stderr_file=None, redis_password=None, fate_share=None, max_bytes=0, backup_count=0, ): """Start a dashboard process. Args:...
https://github.com/ray-project/ray/issues/13351
2021-01-07 03:57:35,395 WARNING worker.py:1044 -- The dashboard on node travis-job-a2c3f054-a588-45a5-b10a-2456ba486c28 failed with the following error: Traceback (most recent call last): File "/opt/miniconda/lib/python3.6/asyncio/base_events.py", line 1073, in create_server sock.bind(sa) OSError: [Errno 98] Address al...
OSError
def learn_on_batch(self, samples: SampleBatchType) -> dict: """Update policies based on the given batch. This is the equivalent to apply_gradients(compute_gradients(samples)), but can be optimized to avoid pulling gradients into CPU memory. Returns: info: dictionary of extra metadata from comp...
def learn_on_batch(self, samples: SampleBatchType) -> dict: """Update policies based on the given batch. This is the equivalent to apply_gradients(compute_gradients(samples)), but can be optimized to avoid pulling gradients into CPU memory. Returns: info: dictionary of extra metadata from comp...
https://github.com/ray-project/ray/issues/13824
Traceback (most recent call last): File "/home/justinkterry/.local/lib/python3.6/site-packages/ray/tune/trial_runner.py", line 519, in _process_trial result = self.trial_executor.fetch_result(trial) File "/home/justinkterry/.local/lib/python3.6/site-packages/ray/tune/ray_trial_executor.py", line 497, in fetch_result re...
ValueError
def __call__(self, samples: SampleBatchType) -> (SampleBatchType, List[dict]): _check_sample_batch_type(samples) # Handle everything as if multiagent if isinstance(samples, SampleBatch): samples = MultiAgentBatch({DEFAULT_POLICY_ID: samples}, samples.count) metrics = _get_shared_metrics() ...
def __call__(self, samples: SampleBatchType) -> (SampleBatchType, List[dict]): _check_sample_batch_type(samples) # Handle everything as if multiagent if isinstance(samples, SampleBatch): samples = MultiAgentBatch({DEFAULT_POLICY_ID: samples}, samples.count) metrics = _get_shared_metrics() ...
https://github.com/ray-project/ray/issues/13824
Traceback (most recent call last): File "/home/justinkterry/.local/lib/python3.6/site-packages/ray/tune/trial_runner.py", line 519, in _process_trial result = self.trial_executor.fetch_result(trial) File "/home/justinkterry/.local/lib/python3.6/site-packages/ray/tune/ray_trial_executor.py", line 497, in fetch_result re...
ValueError
def _get(self, ref: ClientObjectRef, timeout: float): req = ray_client_pb2.GetRequest(id=ref.id, timeout=timeout) try: data = self.data_client.GetObject(req) except grpc.RpcError as e: raise e.details() if not data.valid: try: err = cloudpickle.loads(data.error) ...
def _get(self, ref: ClientObjectRef, timeout: float): req = ray_client_pb2.GetRequest(id=ref.id, timeout=timeout) try: data = self.data_client.GetObject(req) except grpc.RpcError as e: raise e.details() if not data.valid: try: err = cloudpickle.loads(data.error) ...
https://github.com/ray-project/ray/issues/14161
Failed to deserialize b"\x80\x05\x95\xf1\x00\x00\x00\x00\x00\x00\x00\x8c\x08builtins\x94\x8c\nValueError\x94\x93\x94\x8c\xcfFailed to look up actor with name 'abc'. You are either trying to look up a named actor you didn't create, the named actor died, or the actor hasn't been created because named actor creation is as...
ValueError
def _call_schedule_for_task(self, task: ray_client_pb2.ClientTask) -> List[bytes]: logger.debug("Scheduling %s" % task) task.client_id = self._client_id try: ticket = self.server.Schedule(task, metadata=self.metadata) except grpc.RpcError as e: raise decode_exception(e.details) if no...
def _call_schedule_for_task(self, task: ray_client_pb2.ClientTask) -> List[bytes]: logger.debug("Scheduling %s" % task) task.client_id = self._client_id try: ticket = self.server.Schedule(task, metadata=self.metadata) except grpc.RpcError as e: raise decode_exception(e.details) if no...
https://github.com/ray-project/ray/issues/14161
Failed to deserialize b"\x80\x05\x95\xf1\x00\x00\x00\x00\x00\x00\x00\x8c\x08builtins\x94\x8c\nValueError\x94\x93\x94\x8c\xcfFailed to look up actor with name 'abc'. You are either trying to look up a named actor you didn't create, the named actor died, or the actor hasn't been created because named actor creation is as...
ValueError
def normalize(data, wrt): """Normalize data to be in range (0,1), with respect to (wrt) boundaries, which can be specified. """ return (data - np.min(wrt, axis=0)) / ( np.max(wrt, axis=0) - np.min(wrt, axis=0) + 1e-8 )
def normalize(data, wrt): """Normalize data to be in range (0,1), with respect to (wrt) boundaries, which can be specified. """ return (data - np.min(wrt, axis=0)) / (np.max(wrt, axis=0) - np.min(wrt, axis=0))
https://github.com/ray-project/ray/issues/14069
Traceback (most recent call last): File "./tune_pb2.py", line 303, in <module> raise_on_failed_trial=False) File "/home/john/anaconda3/envs/python3.7/lib/python3.7/site-packages/ray/tune/tune.py", line 411, in run runner.step() File "/home/john/anaconda3/envs/python3.7/lib/python3.7/site-packages/ray/tune/trial_runner....
ray.tune.error.TuneError
def on_step_begin(self, **info): import click from ray.autoscaler._private.commands import kill_node failures = 0 max_failures = 3 # With 10% probability inject failure to a worker. if random.random() < self.probability and not self.disable: # With 10% probability fully terminate the no...
def on_step_begin(self, **info): from ray.autoscaler._private.commands import kill_node # With 10% probability inject failure to a worker. if random.random() < self.probability and not self.disable: # With 10% probability fully terminate the node. should_terminate = random.random() < self.p...
https://github.com/ray-project/ray/issues/13923
2021-02-04 17:58:07,590 INFO commands.py:283 -- Checking AWS environment settings 2021-02-04 17:58:08,874 INFO commands.py:431 -- A random node will be killed. Confirm [y/N]: y [automatic, due to --yes] 2021-02-04 17:58:09,027 INFO commands.py:441 -- Shutdown i-03aa1f3b86602ada0 2021-02-04 17:58:09,028 INFO command_run...
click.exceptions.ClickException
def _check_ami(config): """Provide helpful message for missing ImageId for node configuration.""" _set_config_info(head_ami_src="config", workers_ami_src="config") region = config["provider"]["region"] default_ami = DEFAULT_AMI.get(region) if not default_ami: # If we do not provide a defau...
def _check_ami(config): """Provide helpful message for missing ImageId for node configuration.""" _set_config_info(head_ami_src="config", workers_ami_src="config") region = config["provider"]["region"] default_ami = DEFAULT_AMI.get(region) if not default_ami: # If we do not provide a defau...
https://github.com/ray-project/ray/issues/13800
Traceback (most recent call last): File "/home/ubuntu/.local/bin/ray", line 11, in <module> load_entry_point('ray', 'console_scripts', 'ray')() File "/home/ubuntu/ray/python/ray/scripts/scripts.py", line 1519, in main return cli() File "/home/ubuntu/.local/lib/python3.8/site-packages/click/core.py", line 829, in __call...
KeyError
def on_checkpoint(self, checkpoint): """Starts tracking checkpoint metadata on checkpoint. Sets the newest checkpoint. For PERSISTENT checkpoints: Deletes previous checkpoint as long as it isn't one of the best ones. Also deletes the worst checkpoint if at capacity. Args: checkpoint (Check...
def on_checkpoint(self, checkpoint): """Starts tracking checkpoint metadata on checkpoint. Sets the newest checkpoint. For PERSISTENT checkpoints: Deletes previous checkpoint as long as it isn't one of the best ones. Also deletes the worst checkpoint if at capacity. Args: checkpoint (Check...
https://github.com/ray-project/ray/issues/9036
Failure # 1 (occurred at 2020-06-19_11-26-36) Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/ray_trial_executor.py", line 294, in start_trial self._start_trial(trial, checkpoint, train=train) File "/usr/local/lib/python3.6/dist-packages/ray/tune/ray_trial_executor.py", line 235...
FileNotFoundError
def __init__(self, controller_handle, sync: bool): self.controller_handle = controller_handle self.sync = sync self.router = Router(controller_handle) if sync: self.async_loop = create_or_get_async_loop_in_thread() asyncio.run_coroutine_threadsafe( self.router.setup_in_async...
def __init__(self, controller_handle, sync: bool): self.router = Router(controller_handle) if sync: self.async_loop = create_or_get_async_loop_in_thread() asyncio.run_coroutine_threadsafe( self.router.setup_in_async_loop(), self.async_loop, ) else: se...
https://github.com/ray-project/ray/issues/13180
2021-01-04 21:15:59,360 INFO services.py:1173 -- View the Ray dashboard at http://127.0.0.1:8265 (pid=6369) 2021-01-04 21:16:01,432 INFO controller.py:346 -- Starting router with name 'hRhwaS:SERVE_CONTROLLER_ACTOR:SERVE_PROXY_ACTOR-node:192.168.31.141-0' on node 'node:192.168.31.141-0' listening on '127.0.0.1:8000' (p...
TypeError
def __init__( self, router, # ThreadProxiedRouter endpoint_name, handle_options: Optional[HandleOptions] = None, ): self.router = router self.endpoint_name = endpoint_name self.handle_options = handle_options or HandleOptions()
def __init__( self, router: Router, endpoint_name, handle_options: Optional[HandleOptions] = None ): self.router = router self.endpoint_name = endpoint_name self.handle_options = handle_options or HandleOptions()
https://github.com/ray-project/ray/issues/13180
2021-01-04 21:15:59,360 INFO services.py:1173 -- View the Ray dashboard at http://127.0.0.1:8265 (pid=6369) 2021-01-04 21:16:01,432 INFO controller.py:346 -- Starting router with name 'hRhwaS:SERVE_CONTROLLER_ACTOR:SERVE_PROXY_ACTOR-node:192.168.31.141-0' on node 'node:192.168.31.141-0' listening on '127.0.0.1:8000' (p...
TypeError
async def remote(self, request_data: Optional[Union[Dict, Any]] = None, **kwargs): """Issue an asynchronous request to the endpoint. Returns a Ray ObjectRef whose results can be waited for or retrieved using ray.wait or ray.get (or ``await object_ref``), respectively. Returns: ray.ObjectRef ...
async def remote(self, request_data: Optional[Union[Dict, Any]] = None, **kwargs): """Issue an asynchrounous request to the endpoint. Returns a Ray ObjectRef whose results can be waited for or retrieved using ray.wait or ray.get (or ``await object_ref``), respectively. Returns: ray.ObjectRef ...
https://github.com/ray-project/ray/issues/13180
2021-01-04 21:15:59,360 INFO services.py:1173 -- View the Ray dashboard at http://127.0.0.1:8265 (pid=6369) 2021-01-04 21:16:01,432 INFO controller.py:346 -- Starting router with name 'hRhwaS:SERVE_CONTROLLER_ACTOR:SERVE_PROXY_ACTOR-node:192.168.31.141-0' on node 'node:192.168.31.141-0' listening on '127.0.0.1:8000' (p...
TypeError
def __init__( self, node_ip_address, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Pub...
def __init__( self, node_ip_address, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Pub...
https://github.com/ray-project/ray/issues/13199
2021-01-05T07:27:22.1039161Z 2021-01-05 07:26:40,486 WARNING worker.py:1044 -- The agent on node fv-az68-689 failed with the following error: 2021-01-05T07:27:22.1039976Z Traceback (most recent call last): 2021-01-05T07:27:22.1040684Z File "d:\a\ray\ray\python\ray\new_dashboard/agent.py", line 311, in <module> 2021-0...
UnboundLocalError
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
https://github.com/ray-project/ray/issues/13199
2021-01-05T07:27:22.1039161Z 2021-01-05 07:26:40,486 WARNING worker.py:1044 -- The agent on node fv-az68-689 failed with the following error: 2021-01-05T07:27:22.1039976Z Traceback (most recent call last): 2021-01-05T07:27:22.1040684Z File "d:\a\ray\ray\python\ray\new_dashboard/agent.py", line 311, in <module> 2021-0...
UnboundLocalError
def is_connected(self) -> bool: if self.client_worker is None: return False return self.client_worker.is_connected()
def is_connected(self) -> bool: return self.client_worker is not None
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def __init__(self, channel: "grpc._channel.Channel", client_id: str, metadata: list): """Initializes a thread-safe datapath over a Ray Client gRPC channel. Args: channel: connected gRPC channel client_id: the generated ID representing this client metadata: metadata to pass to gRPC reque...
def __init__(self, channel: "grpc._channel.Channel", client_id: str, metadata: list): """Initializes a thread-safe datapath over a Ray Client gRPC channel. Args: channel: connected gRPC channel client_id: the generated ID representing this client metadata: metadata to pass to gRPC reque...
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def _data_main(self) -> None: stub = ray_client_pb2_grpc.RayletDataStreamerStub(self.channel) resp_stream = stub.Datapath( iter(self.request_queue.get, None), metadata=[("client_id", self._client_id)] + self._metadata, wait_for_ready=True, ) try: for response in resp_stre...
def _data_main(self) -> None: stub = ray_client_pb2_grpc.RayletDataStreamerStub(self.channel) resp_stream = stub.Datapath( iter(self.request_queue.get, None), metadata=[("client_id", self._client_id)] + self._metadata, wait_for_ready=True, ) try: for response in resp_stre...
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def _blocking_send( self, req: ray_client_pb2.DataRequest ) -> ray_client_pb2.DataResponse: req_id = self._next_id() req.req_id = req_id self.request_queue.put(req) data = None with self.cv: self.cv.wait_for(lambda: req_id in self.ready_data or self._in_shutdown) if self._in_shut...
def _blocking_send( self, req: ray_client_pb2.DataRequest ) -> ray_client_pb2.DataResponse: req_id = self._next_id() req.req_id = req_id self.request_queue.put(req) data = None with self.cv: self.cv.wait_for(lambda: req_id in self.ready_data) data = self.ready_data[req_id] ...
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def _log_main(self) -> None: stub = ray_client_pb2_grpc.RayletLogStreamerStub(self.channel) log_stream = stub.Logstream( iter(self.request_queue.get, None), metadata=self._metadata ) try: for record in log_stream: if record.level < 0: self.stdstream(level=reco...
def _log_main(self) -> None: stub = ray_client_pb2_grpc.RayletLogStreamerStub(self.channel) log_stream = stub.Logstream( iter(self.request_queue.get, None), metadata=self._metadata ) try: for record in log_stream: if record.level < 0: self.stdstream(level=reco...
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def __init__( self, conn_str: str = "", secure: bool = False, metadata: List[Tuple[str, str]] = None, connection_retries: int = 3, ): """Initializes the worker side grpc client. Args: conn_str: The host:port connection string for the ray server. secure: whether to use SSL se...
def __init__( self, conn_str: str = "", secure: bool = False, metadata: List[Tuple[str, str]] = None, connection_retries: int = 3, ): """Initializes the worker side grpc client. Args: conn_str: The host:port connection string for the ray server. secure: whether to use SSL se...
https://github.com/ray-project/ray/issues/13353
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610421939.184399675","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def translate( configuration: Dict[str, Any], dictionary: Dict[str, str] ) -> Dict[str, Any]: return { dictionary[field]: configuration[field] for field in dictionary if field in configuration }
def translate( configuration: Dict[str, Any], dictionary: Dict[str, str] ) -> Dict[str, Any]: return {dictionary[field]: configuration[field] for field in dictionary}
https://github.com/ray-project/ray/issues/13667
Traceback (most recent call last): File "/home/ray/anaconda3/bin/ray-operator", line 8, in <module> sys.exit(main()) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/operator/operator.py", line 123, in main cluster_config = operator_utils.cr_to_config(cluster_cr) File "/home/ray/anaconda3/lib/python3.7/site-pa...
KeyError
def __init__( self, conn_str: str = "", secure: bool = False, metadata: List[Tuple[str, str]] = None, connection_retries: int = 3, ): """Initializes the worker side grpc client. Args: conn_str: The host:port connection string for the ray server. secure: whether to use SSL se...
def __init__( self, conn_str: str = "", secure: bool = False, metadata: List[Tuple[str, str]] = None, connection_retries: int = 3, ): """Initializes the worker side grpc client. Args: conn_str: The host:port connection string for the ray server. secure: whether to use SSL se...
https://github.com/ray-project/ray/issues/13446
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Received http2 header with status: 502" debug_error_string = "{"created":"@1610606646.739755640","description":"Received http2 :status header with non-200 OK status","file":"sr...
debug_error
def __init__( self, name: str, description: str = "", tag_keys: Optional[Tuple[str]] = None ): if len(name) == 0: raise ValueError("Empty name is not allowed. Please provide a metric name.") self._name = name self._description = description # We don't specify unit because it won't be # e...
def __init__( self, name: str, description: str = "", tag_keys: Optional[Tuple[str]] = None ): if len(name) == 0: raise ValueError("Empty name is not allowed. Please provide a metric name.") self._name = name self._description = description # We don't specify unit because it won't be # e...
https://github.com/ray-project/ray/issues/13419
Traceback (most recent call last): File "test.py", line 8, in <module> count.record(1.0, {"b": 2}) File "/Users/eoakes/code/ray/python/ray/util/metrics.py", line 84, in record self._metric.record(value, tags=final_tags) File "python/ray/includes/metric.pxi", line 54, in ray._raylet.Metric.record c_tags[tag_k.encode("as...
AttributeError
def set_default_tags(self, default_tags: Dict[str, str]): """Set default tags of metrics. Example: >>> # Note that set_default_tags returns the instance itself. >>> counter = Counter("name") >>> counter2 = counter.set_default_tags({"a": "b"}) >>> assert counter is counter2 ...
def set_default_tags(self, default_tags: Dict[str, str]): """Set default tags of metrics. Example: >>> # Note that set_default_tags returns the instance itself. >>> counter = Counter("name") >>> counter2 = counter.set_default_tags({"a": "b"}) >>> assert counter is counter2 ...
https://github.com/ray-project/ray/issues/13419
Traceback (most recent call last): File "test.py", line 8, in <module> count.record(1.0, {"b": 2}) File "/Users/eoakes/code/ray/python/ray/util/metrics.py", line 84, in record self._metric.record(value, tags=final_tags) File "python/ray/includes/metric.pxi", line 54, in ray._raylet.Metric.record c_tags[tag_k.encode("as...
AttributeError
def record(self, value: float, tags: dict = None) -> None: """Record the metric point of the metric. Args: value(float): The value to be recorded as a metric point. """ assert self._metric is not None if tags is not None: for val in tags.values(): if not isinstance(val, ...
def record(self, value: float, tags: dict = None) -> None: """Record the metric point of the metric. Args: value(float): The value to be recorded as a metric point. """ assert self._metric is not None default_tag_copy = self._default_tags.copy() default_tag_copy.update(tags or {}) s...
https://github.com/ray-project/ray/issues/13419
Traceback (most recent call last): File "test.py", line 8, in <module> count.record(1.0, {"b": 2}) File "/Users/eoakes/code/ray/python/ray/util/metrics.py", line 84, in record self._metric.record(value, tags=final_tags) File "python/ray/includes/metric.pxi", line 54, in ray._raylet.Metric.record c_tags[tag_k.encode("as...
AttributeError
def postprocess_advantages( policy, sample_batch, other_agent_batches=None, episode=None ): # Stub serving backward compatibility. deprecation_warning( old="rllib.agents.a3c.a3c_tf_policy.postprocess_advantages", new="rllib.evaluation.postprocessing.compute_gae_for_sample_batch", err...
def postprocess_advantages( policy, sample_batch, other_agent_batches=None, episode=None ): completed = sample_batch[SampleBatch.DONES][-1] if completed: last_r = 0.0 else: next_state = [] for i in range(policy.num_state_tensors()): next_state.append(sample_batch["sta...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def setup_mixins(policy, obs_space, action_space, config): ValueNetworkMixin.__init__(policy, obs_space, action_space, config) LearningRateSchedule.__init__(policy, config["lr"], config["lr_schedule"])
def setup_mixins(policy, obs_space, action_space, config): ValueNetworkMixin.__init__(policy) LearningRateSchedule.__init__(policy, config["lr"], config["lr_schedule"])
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def __init__( self, action_dist, actions, advantages, v_target, vf, vf_loss_coeff=0.5, entropy_coeff=0.01, ): log_prob = action_dist.logp(actions) # The "policy gradients" loss self.pi_loss = -tf.reduce_sum(log_prob * advantages) delta = vf - v_target self.vf_loss =...
def __init__(self): @make_tf_callable(self.get_session()) def value(ob, prev_action, prev_reward, *state): model_out, _ = self.model( { SampleBatch.CUR_OBS: tf.convert_to_tensor([ob]), SampleBatch.PREV_ACTIONS: tf.convert_to_tensor([prev_action]), ...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def add_advantages(policy, sample_batch, other_agent_batches=None, episode=None): # Stub serving backward compatibility. deprecation_warning( old="rllib.agents.a3c.a3c_torch_policy.add_advantages", new="rllib.evaluation.postprocessing.compute_gae_for_sample_batch", error=False, ) ...
def add_advantages(policy, sample_batch, other_agent_batches=None, episode=None): completed = sample_batch[SampleBatch.DONES][-1] if completed: last_r = 0.0 else: last_r = policy._value(sample_batch[SampleBatch.NEXT_OBS][-1]) return compute_advantages( sample_batch, last...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def clip_gradients( policy: Policy, optimizer: "tf.keras.optimizers.Optimizer", loss: TensorType ) -> ModelGradients: return minimize_and_clip( optimizer, loss, var_list=policy.q_func_vars, clip_val=policy.config["grad_clip"], )
def clip_gradients( policy: Policy, optimizer: "tf.keras.optimizers.Optimizer", loss: TensorType ) -> ModelGradients: if policy.config["grad_clip"] is not None: grads_and_vars = minimize_and_clip( optimizer, loss, var_list=policy.q_func_vars, clip_val=poli...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def get_policy_class(config): if config["framework"] == "torch": if config["vtrace"]: from ray.rllib.agents.impala.vtrace_torch_policy import VTraceTorchPolicy return VTraceTorchPolicy else: from ray.rllib.agents.a3c.a3c_torch_policy import A3CTorchPolicy ...
def get_policy_class(config): if config["framework"] == "torch": if config["vtrace"]: from ray.rllib.agents.impala.vtrace_torch_policy import VTraceTorchPolicy return VTraceTorchPolicy else: from ray.rllib.agents.a3c.a3c_torch_policy import A3CTorchPolicy ...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def postprocess_trajectory( policy: Policy, sample_batch: SampleBatch, other_agent_batches: Optional[Dict[AgentID, SampleBatch]] = None, episode: Optional[MultiAgentEpisode] = None, ) -> SampleBatch: """Postprocesses a trajectory and returns the processed trajectory. The trajectory contains onl...
def postprocess_trajectory( policy: Policy, sample_batch: SampleBatch, other_agent_batches: Optional[Dict[AgentID, SampleBatch]] = None, episode: Optional[MultiAgentEpisode] = None, ) -> SampleBatch: """Postprocesses a trajectory and returns the processed trajectory. The trajectory contains onl...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def postprocess_ppo_gae( policy: Policy, sample_batch: SampleBatch, other_agent_batches: Optional[Dict[AgentID, SampleBatch]] = None, episode: Optional[MultiAgentEpisode] = None, ) -> SampleBatch: # Stub serving backward compatibility. deprecation_warning( old="rllib.agents.ppo.ppo_tf_po...
def postprocess_ppo_gae( policy: Policy, sample_batch: SampleBatch, other_agent_batches: Optional[Dict[AgentID, SampleBatch]] = None, episode: Optional[MultiAgentEpisode] = None, ) -> SampleBatch: """Postprocesses a trajectory and returns the processed trajectory. The trajectory contains only d...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def gradients(self, optimizer, loss): self.gvs = { k: minimize_and_clip( optimizer, self.losses[k], self.vars[k], self.config["grad_norm_clipping"] ) for k, optimizer in self.optimizers.items() } return self.gvs["critic"] + self.gvs["actor"]
def gradients(self, optimizer, loss): if self.config["grad_norm_clipping"] is not None: self.gvs = { k: minimize_and_clip( optimizer, self.losses[k], self.vars[k], self.config["grad_norm_clipping"], ) for k, ...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def minimize_and_clip(optimizer, objective, var_list, clip_val=10.0): """Minimized `objective` using `optimizer` w.r.t. variables in `var_list` while ensure the norm of the gradients for each variable is clipped to `clip_val` """ # Accidentally passing values < 0.0 will break all gradients. asse...
def minimize_and_clip(optimizer, objective, var_list, clip_val=10.0): """Minimized `objective` using `optimizer` w.r.t. variables in `var_list` while ensure the norm of the gradients for each variable is clipped to `clip_val` """ # Accidentally passing values < 0.0 will break all gradients. asse...
https://github.com/ray-project/ray/issues/9071
2020-06-21 13:09:32,571 ERROR trial_runner.py:524 -- Trial PPO_TestingGym_f28cf_00000: Error processing event. Traceback (most recent call last): File "/home/user/anaconda3/envs/RLlibTesting/lib/python3.8/site-packages/ray/tune/trial_runner.py", line 472, in _process_trial result = self.trial_executor.fetch_result(tria...
tensorflow.python.framework.errors_impl.InvalidArgumentError
def persistent_id(self, obj): if isinstance(obj, ray.ObjectRef): obj_id = obj.binary() if obj_id not in self.server.object_refs[self.client_id]: # We're passing back a reference, probably inside a reference. # Let's hold onto it. self.server.object_refs[self.clien...
def persistent_id(self, obj): if isinstance(obj, ray.ObjectRef): obj_id = obj.binary() if obj_id not in self.server.object_refs[self.client_id]: # We're passing back a reference, probably inside a reference. # Let's hold onto it. self.server.object_refs[self.clien...
https://github.com/ray-project/ray/issues/13463
Got Error from data channel -- shutting down: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNKNOWN details = "Exception iterating responses: 'ServerPickler' object has no attribute 'actor_refs'" debug_error_string = "{"created":"@1610645797.119742000","description":"Error received from pee...
debug_error
def ClusterInfo(self, request, context=None) -> ray_client_pb2.ClusterInfoResponse: resp = ray_client_pb2.ClusterInfoResponse() resp.type = request.type if request.type == ray_client_pb2.ClusterInfoType.CLUSTER_RESOURCES: with disable_client_hook(): resources = ray.cluster_resources() ...
def ClusterInfo(self, request, context=None) -> ray_client_pb2.ClusterInfoResponse: resp = ray_client_pb2.ClusterInfoResponse() resp.type = request.type if request.type == ray_client_pb2.ClusterInfoType.CLUSTER_RESOURCES: with disable_client_hook(): resources = ray.cluster_resources() ...
https://github.com/ray-project/ray/issues/13414
Traceback (most recent call last): File "test.py", line 4, in <module> print(ray.get_runtime_context().node_id.hex()) File "/Users/eoakes/code/ray/python/ray/runtime_context.py", line 58, in node_id node_id = self.worker.current_node_id File "/Users/eoakes/code/ray/python/ray/worker.py", line 148, in current_node_id re...
AttributeError
def get_cluster_info(self, type: ray_client_pb2.ClusterInfoType.TypeEnum): req = ray_client_pb2.ClusterInfoRequest() req.type = type resp = self.server.ClusterInfo(req, metadata=self.metadata) if resp.WhichOneof("response_type") == "resource_table": # translate from a proto map to a python dict ...
def get_cluster_info(self, type: ray_client_pb2.ClusterInfoType.TypeEnum): req = ray_client_pb2.ClusterInfoRequest() req.type = type resp = self.server.ClusterInfo(req, metadata=self.metadata) if resp.WhichOneof("response_type") == "resource_table": # translate from a proto map to a python dict ...
https://github.com/ray-project/ray/issues/13414
Traceback (most recent call last): File "test.py", line 4, in <module> print(ray.get_runtime_context().node_id.hex()) File "/Users/eoakes/code/ray/python/ray/runtime_context.py", line 58, in node_id node_id = self.worker.current_node_id File "/Users/eoakes/code/ray/python/ray/worker.py", line 148, in current_node_id re...
AttributeError
def get(self): """Get a dictionary of the current context. Fields that are not available (e.g., actor ID inside a task) won't be included in the field. Returns: dict: Dictionary of the current context. """ context = { "job_id": self.job_id, "node_id": self.node_id, ...
def get(self): """Get a dictionary of the current_context. For fields that are not available (for example actor id inside a task) won't be included in the field. Returns: dict: Dictionary of the current context. """ context = { "job_id": self.job_id, "node_id": self.nod...
https://github.com/ray-project/ray/issues/13415
2021-01-13 14:15:29,011 INFO services.py:1169 -- View the Ray dashboard at http://127.0.0.1:8266 Traceback (most recent call last): File "test.py", line 4, in <module> print(ray.get_runtime_context().get()) File "/Users/eoakes/code/ray/python/ray/runtime_context.py", line 26, in get "task_id": self.task_id, File "/User...
AssertionError
def __init__( self, node_ip_address, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Pub...
def __init__( self, node_ip_address, redis_address, dashboard_agent_port, redis_password=None, temp_dir=None, log_dir=None, metrics_export_port=None, node_manager_port=None, object_store_name=None, raylet_name=None, ): """Initialize the DashboardAgent object.""" # Pub...
https://github.com/ray-project/ray/issues/12947
(pid=None) Traceback (most recent call last): (pid=None) File "D:\Programs\Anaconda3\envs\ray\lib\site-packages\ray\new_dashboard/agent.py", line 317, in <module> (pid=None) raise e (pid=None) File "D:\Programs\Anaconda3\envs\ray\lib\site-packages\ray\new_dashboard/agent.py", line 293, in <module> (pid=None) ...
KeyError
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
async def run(self): async def _check_parent(): """Check if raylet is dead and fate-share if it is.""" try: curr_proc = psutil.Process() while True: parent = curr_proc.parent() if parent is None or parent.pid == 1 or self.ppid != parent.pid: ...
https://github.com/ray-project/ray/issues/12947
(pid=None) Traceback (most recent call last): (pid=None) File "D:\Programs\Anaconda3\envs\ray\lib\site-packages\ray\new_dashboard/agent.py", line 317, in <module> (pid=None) raise e (pid=None) File "D:\Programs\Anaconda3\envs\ray\lib\site-packages\ray\new_dashboard/agent.py", line 293, in <module> (pid=None) ...
KeyError
def __str__(self): return ( "The worker died unexpectedly while executing this task. " "Check python-core-worker-*.log files for more information." )
def __str__(self): return "The worker died unexpectedly while executing this task."
https://github.com/ray-project/ray/issues/11239
2020-10-05 01:55:09,393\u0009ERROR trial_runner.py:567 -- Trial PPO_QbertNoFrameskip-v4_b43b9_00027: Error processing event. Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/trial_runner.py", line 515, in _process_trial result = self.trial_executor.fetch_result(trial) File "/usr/...
ray.exceptions.RayTaskError
def __str__(self): return ( "The actor died unexpectedly before finishing this task. " "Check python-core-worker-*.log files for more information." )
def __str__(self): return "The actor died unexpectedly before finishing this task."
https://github.com/ray-project/ray/issues/11239
2020-10-05 01:55:09,393\u0009ERROR trial_runner.py:567 -- Trial PPO_QbertNoFrameskip-v4_b43b9_00027: Error processing event. Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/trial_runner.py", line 515, in _process_trial result = self.trial_executor.fetch_result(trial) File "/usr/...
ray.exceptions.RayTaskError
def _try_to_compute_deterministic_class_id(cls, depth=5): """Attempt to produce a deterministic class ID for a given class. The goal here is for the class ID to be the same when this is run on different worker processes. Pickling, loading, and pickling again seems to produce more consistent results tha...
def _try_to_compute_deterministic_class_id(cls, depth=5): """Attempt to produce a deterministic class ID for a given class. The goal here is for the class ID to be the same when this is run on different worker processes. Pickling, loading, and pickling again seems to produce more consistent results tha...
https://github.com/ray-project/ray/issues/11239
2020-10-05 01:55:09,393\u0009ERROR trial_runner.py:567 -- Trial PPO_QbertNoFrameskip-v4_b43b9_00027: Error processing event. Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/trial_runner.py", line 515, in _process_trial result = self.trial_executor.fetch_result(trial) File "/usr/...
ray.exceptions.RayTaskError
def _random_string(): id_hash = hashlib.shake_128() id_hash.update(uuid.uuid4().bytes) id_bytes = id_hash.digest(ray_constants.ID_SIZE) assert len(id_bytes) == ray_constants.ID_SIZE return id_bytes
def _random_string(): id_hash = hashlib.sha1() id_hash.update(uuid.uuid4().bytes) id_bytes = id_hash.digest() assert len(id_bytes) == ray_constants.ID_SIZE return id_bytes
https://github.com/ray-project/ray/issues/11239
2020-10-05 01:55:09,393\u0009ERROR trial_runner.py:567 -- Trial PPO_QbertNoFrameskip-v4_b43b9_00027: Error processing event. Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/trial_runner.py", line 515, in _process_trial result = self.trial_executor.fetch_result(trial) File "/usr/...
ray.exceptions.RayTaskError
def run_function_on_all_workers(self, function, run_on_other_drivers=False): """Run arbitrary code on all of the workers. This function will first be run on the driver, and then it will be exported to all of the workers to be run. It will also be run on any new workers that register later. If ray.init ...
def run_function_on_all_workers(self, function, run_on_other_drivers=False): """Run arbitrary code on all of the workers. This function will first be run on the driver, and then it will be exported to all of the workers to be run. It will also be run on any new workers that register later. If ray.init ...
https://github.com/ray-project/ray/issues/11239
2020-10-05 01:55:09,393\u0009ERROR trial_runner.py:567 -- Trial PPO_QbertNoFrameskip-v4_b43b9_00027: Error processing event. Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/ray/tune/trial_runner.py", line 515, in _process_trial result = self.trial_executor.fetch_result(trial) File "/usr/...
ray.exceptions.RayTaskError
def _home(self): if self._home_cached is not None: return self._home_cached for _ in range(MAX_HOME_RETRIES - 1): try: self._home_cached = self._try_to_get_home() return self._home_cached except Exception: # TODO (Dmitri): Identify the exception we're ...
def _home(self): # TODO (Dmitri): Think about how to use the node's HOME variable # without making an extra kubectl exec call. if self._home_cached is None: cmd = self.kubectl + ["exec", "-it", self.node_id, "--", "printenv", "HOME"] joined_cmd = " ".join(cmd) raw_out = self.process_...
https://github.com/ray-project/ray/issues/12883
Updating cluster configuration. [hash=0194a452ebd82e0ab6eade7b4dd3a4f4f775d5de] New status: syncing-files [2/7] Processing file mounts 2020-12-15 09:03:24,116 INFO command_runner.py:169 -- NodeUpdater: ray-head-m5nvd: Running kubectl -n ray exec -it ray-head-m5nvd -- bash --login -c -i 'true &amp;&amp; source ~/.bashrc...
subprocess.CalledProcessError
def init( address=None, *, num_cpus=None, num_gpus=None, resources=None, object_store_memory=None, local_mode=False, ignore_reinit_error=False, include_dashboard=None, dashboard_host=ray_constants.DEFAULT_DASHBOARD_IP, dashboard_port=ray_constants.DEFAULT_DASHBOARD_PORT, ...
def init( address=None, *, num_cpus=None, num_gpus=None, resources=None, object_store_memory=None, local_mode=False, ignore_reinit_error=False, include_dashboard=None, dashboard_host=ray_constants.DEFAULT_DASHBOARD_IP, dashboard_port=ray_constants.DEFAULT_DASHBOARD_PORT, ...
https://github.com/ray-project/ray/issues/12059
Traceback (most recent call last): File "debugging.py", line 2, in <module> ray.init() File "/Users/haochen/code/ant_ray/python/ray/worker.py", line 740, in init ray_params=ray_params) File "/Users/haochen/code/ant_ray/python/ray/node.py", line 200, in __init__ self.start_head_processes() File "/Users/haochen/code/ant_...
redis.exceptions.ResponseError
def init( address=None, *, num_cpus=None, num_gpus=None, resources=None, object_store_memory=None, local_mode=False, ignore_reinit_error=False, include_dashboard=None, dashboard_host=ray_constants.DEFAULT_DASHBOARD_IP, dashboard_port=ray_constants.DEFAULT_DASHBOARD_PORT, ...
def init( address=None, *, num_cpus=None, num_gpus=None, resources=None, object_store_memory=None, local_mode=False, ignore_reinit_error=False, include_dashboard=None, dashboard_host=ray_constants.DEFAULT_DASHBOARD_IP, dashboard_port=ray_constants.DEFAULT_DASHBOARD_PORT, ...
https://github.com/ray-project/ray/issues/12059
Traceback (most recent call last): File "debugging.py", line 2, in <module> ray.init() File "/Users/haochen/code/ant_ray/python/ray/worker.py", line 740, in init ray_params=ray_params) File "/Users/haochen/code/ant_ray/python/ray/node.py", line 200, in __init__ self.start_head_processes() File "/Users/haochen/code/ant_...
redis.exceptions.ResponseError
def shutdown(self) -> None: """Completely shut down the connected Serve instance. Shuts down all processes and deletes all state associated with the instance. """ if (not self._shutdown) and ray.is_initialized(): ray.get(self._controller.shutdown.remote()) ray.kill(self._controller,...
def shutdown(self) -> None: """Completely shut down the connected Serve instance. Shuts down all processes and deletes all state associated with the instance. """ if not self._shutdown: ray.get(self._controller.shutdown.remote()) ray.kill(self._controller, no_restart=True) s...
https://github.com/ray-project/ray/issues/12214
File descriptor limit 256 is too low for production servers and may result in connection errors. At least 8192 is recommended. --- Fix with 'ulimit -n 8192' 2020-11-20 10:38:27,065 INFO services.py:1173 -- View the Ray dashboard at http://127.0.0.1:8265 (pid=raylet) 2020-11-20 10:38:29,628 INFO controller.py:313 -- Sta...
ray.serve.exceptions.RayServeException
def __init__( self, obs_space: gym.spaces.Space, action_space: gym.spaces.Space, config: TrainerConfigDict, loss_fn: Callable[ [Policy, ModelV2, Type[TFActionDistribution], SampleBatch], TensorType ], *, stats_fn: Optional[Callable[[Policy, SampleBatch], Dict[str, TensorType]]] =...
def __init__( self, obs_space: gym.spaces.Space, action_space: gym.spaces.Space, config: TrainerConfigDict, loss_fn: Callable[ [Policy, ModelV2, Type[TFActionDistribution], SampleBatch], TensorType ], *, stats_fn: Optional[Callable[[Policy, SampleBatch], Dict[str, TensorType]]] =...
https://github.com/ray-project/ray/issues/12244
WARNING:tensorflow:From /Users/ivallesp/projects/rockpaperscisors/.venv/lib/python3.7/site-packages/ray/rllib/policy/tf_policy.py:653: build_tensor_info (from tensorflow.python.saved_model.utils_impl) is deprecated and will be removed in a future version. Instructions for updating: This function will only be available ...
tensorflow.python.ops.op_selector.UnliftableError
def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, config: TrainerConfigDict, sess: "tf1.Session", obs_input: TensorType, sampled_action: TensorType, loss: TensorType, loss_inputs: List[Tuple[str, TensorType]], model: ModelV2 = None, samp...
def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, config: TrainerConfigDict, sess: "tf1.Session", obs_input: TensorType, sampled_action: TensorType, loss: TensorType, loss_inputs: List[Tuple[str, TensorType]], model: ModelV2 = None, samp...
https://github.com/ray-project/ray/issues/12244
WARNING:tensorflow:From /Users/ivallesp/projects/rockpaperscisors/.venv/lib/python3.7/site-packages/ray/rllib/policy/tf_policy.py:653: build_tensor_info (from tensorflow.python.saved_model.utils_impl) is deprecated and will be removed in a future version. Instructions for updating: This function will only be available ...
tensorflow.python.ops.op_selector.UnliftableError
def try_import_tf(error=False): """Tries importing tf and returns the module (or None). Args: error (bool): Whether to raise an error if tf cannot be imported. Returns: Tuple: - tf1.x module (either from tf2.x.compat.v1 OR as tf1.x). - tf module (resulting from `imp...
def try_import_tf(error=False): """Tries importing tf and returns the module (or None). Args: error (bool): Whether to raise an error if tf cannot be imported. Returns: Tuple: - tf1.x module (either from tf2.x.compat.v1 OR as tf1.x). - tf module (resulting from `imp...
https://github.com/ray-project/ray/issues/12244
WARNING:tensorflow:From /Users/ivallesp/projects/rockpaperscisors/.venv/lib/python3.7/site-packages/ray/rllib/policy/tf_policy.py:653: build_tensor_info (from tensorflow.python.saved_model.utils_impl) is deprecated and will be removed in a future version. Instructions for updating: This function will only be available ...
tensorflow.python.ops.op_selector.UnliftableError
def build_trainer( name: str, *, default_config: Optional[TrainerConfigDict] = None, validate_config: Optional[Callable[[TrainerConfigDict], None]] = None, default_policy: Optional[Type[Policy]] = None, get_policy_class: Optional[ Callable[[TrainerConfigDict], Optional[Type[Policy]]] ...
def build_trainer( name: str, *, default_config: Optional[TrainerConfigDict] = None, validate_config: Optional[Callable[[TrainerConfigDict], None]] = None, default_policy: Optional[Type[Policy]] = None, get_policy_class: Optional[ Callable[[TrainerConfigDict], Optional[Type[Policy]]] ...
https://github.com/ray-project/ray/issues/12516
Traceback (most recent call last): File "/data2/huangcq/miniconda3/envs/majenv/lib/python3.8/site-packages/ray/rllib/models/preprocessors.py", line 60, in check_shape if not self._obs_space.contains(observation): File "/data2/huangcq/miniconda3/envs/majenv/lib/python3.8/site-packages/gym/spaces/box.py", line 128, in co...
AttributeError
def __init__( self, *, env_creator: Optional[Callable[[EnvContext], EnvType]] = None, validate_env: Optional[Callable[[EnvType], None]] = None, policy_class: Optional[Type[Policy]] = None, trainer_config: Optional[TrainerConfigDict] = None, num_workers: int = 0, logdir: Optional[str] = N...
def __init__( self, *, env_creator: Optional[Callable[[EnvContext], EnvType]] = None, validate_env: Optional[Callable[[EnvType], None]] = None, policy_class: Optional[Type[Policy]] = None, trainer_config: Optional[TrainerConfigDict] = None, num_workers: int = 0, logdir: Optional[str] = N...
https://github.com/ray-project/ray/issues/12516
Traceback (most recent call last): File "/data2/huangcq/miniconda3/envs/majenv/lib/python3.8/site-packages/ray/rllib/models/preprocessors.py", line 60, in check_shape if not self._obs_space.contains(observation): File "/data2/huangcq/miniconda3/envs/majenv/lib/python3.8/site-packages/gym/spaces/box.py", line 128, in co...
AttributeError
def memory_summary(): """Returns a formatted string describing memory usage in the cluster.""" import grpc from ray.core.generated import node_manager_pb2 from ray.core.generated import node_manager_pb2_grpc # We can ask any Raylet for the global memory info. raylet = ray.nodes()[0] raylet...
def memory_summary(): """Returns a formatted string describing memory usage in the cluster.""" import grpc from ray.core.generated import node_manager_pb2 from ray.core.generated import node_manager_pb2_grpc # We can ask any Raylet for the global memory info. raylet = ray.nodes()[0] raylet...
https://github.com/ray-project/ray/issues/8502
2020-05-19 02:13:32,283 INFO scripts.py:976 -- Connecting to Ray instance at 172.31.6.12:34940. 2020-05-19 02:13:32,284 WARNING worker.py:809 -- When connecting to an existing cluster, _internal_config must match the cluster's _internal_config. (pid=5906) E0519 02:13:32.383447 5906 plasma_store_provider.cc:108] Failed...
grpc._channel._InactiveRpcError
def custom_excepthook(type, value, tb): # If this is a driver, push the exception to GCS worker table. if global_worker.mode == SCRIPT_MODE: error_message = "".join(traceback.format_tb(tb)) worker_id = global_worker.worker_id worker_type = ray.gcs_utils.DRIVER worker_info = {"exc...
def custom_excepthook(type, value, tb): # If this is a driver, push the exception to GCS worker table. if global_worker.mode == SCRIPT_MODE: error_message = "".join(traceback.format_tb(tb)) worker_id = global_worker.worker_id worker_type = ray.gcs_utils.DRIVER worker_info = {"exc...
https://github.com/ray-project/ray/issues/12643
raise Exception("hello") Error in sys.excepthook: Traceback (most recent call last): File "/Users/eoakes/code/ray/python/ray/worker.py", line 836, in custom_excepthook ray.state.state.add_worker(worker_id, worker_type, worker_info) File "/Users/eoakes/code/ray/python/ray/state.py", line 733, in add_worker return self.g...
AttributeError
def __init__(self, sync_up_template, sync_down_template, delete_template=noop_template): """Syncs between two directories with the given command. Arguments: sync_up_template (str): A runnable string template; needs to include replacement fields '{source}' and '{target}'. sync_down_t...
def __init__(self, sync_up_template, sync_down_template, delete_template=noop_template): """Syncs between two directories with the given command. Arguments: sync_up_template (str): A runnable string template; needs to include replacement fields '{source}' and '{target}'. sync_down_t...
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
def set_logdir(self, logdir): """Sets the directory to log sync execution output in. Args: logdir (str): Log directory. """ self.logfile = tempfile.NamedTemporaryFile( prefix="log_sync_out", dir=logdir, suffix=".log", delete=False ) self._closed = False
def set_logdir(self, logdir): """Sets the directory to log sync execution output in. Args: logdir (str): Log directory. """ self.logfile = tempfile.NamedTemporaryFile( prefix="log_sync_out", dir=logdir, suffix=".log", delete=False )
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
def delete(self, target): if self.is_running: logger.warning("Last sync client cmd still in progress, skipping.") return False final_cmd = self.delete_template.format(target=quote(target)) logger.debug("Running delete: {}".format(final_cmd)) self.cmd_process = subprocess.Popen( f...
def delete(self, target): if self.is_running: logger.warning("Last sync client cmd still in progress, skipping.") return False final_cmd = self.delete_template.format(target=quote(target)) logger.debug("Running delete: {}".format(final_cmd)) self.cmd_process = subprocess.Popen( f...
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
def _execute(self, sync_template, source, target): """Executes sync_template on source and target.""" if self.is_running: logger.warning("Last sync client cmd still in progress, skipping.") return False final_cmd = sync_template.format(source=quote(source), target=quote(target)) logger.d...
def _execute(self, sync_template, source, target): """Executes sync_template on source and target.""" if self.is_running: logger.warning("Last sync client cmd still in progress, skipping.") return False final_cmd = sync_template.format(source=quote(source), target=quote(target)) logger.d...
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
def on_trial_complete( self, iteration: int, trials: List["Trial"], trial: "Trial", **info ): trial_syncer = self._get_trial_syncer(trial) if NODE_IP in trial.last_result: trainable_ip = trial.last_result[NODE_IP] else: trainable_ip = ray.get(trial.runner.get_current_ip.remote()) tri...
def on_trial_complete( self, iteration: int, trials: List["Trial"], trial: "Trial", **info ): trial_syncer = self._get_trial_syncer(trial) if NODE_IP in trial.last_result: trainable_ip = trial.last_result[NODE_IP] else: trainable_ip = ray.get(trial.runner.get_current_ip.remote()) tri...
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
def mock_storage_client(): """Mocks storage client that treats a local dir as durable storage.""" client = get_sync_client(LOCAL_SYNC_TEMPLATE, LOCAL_DELETE_TEMPLATE) path = os.path.join( ray.utils.get_user_temp_dir(), f"mock-client-{uuid.uuid4().hex[:4]}" ) os.makedirs(path, exist_ok=True) ...
def mock_storage_client(): """Mocks storage client that treats a local dir as durable storage.""" return get_sync_client(LOCAL_SYNC_TEMPLATE, LOCAL_DELETE_TEMPLATE)
https://github.com/ray-project/ray/issues/12227
2020-11-21 02:02:05,077 ERROR syncer.py:190 -- Sync execution failed. Traceback (most recent call last): File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-packages/ray/tune/syncer.py", line 187, in sync_down self._local_dir) File "/home/ubuntu/anaconda3/envs/tensorflow2_p36/lib/python3.6/site-package...
OSError
async def _do_long_poll(self): while True: try: updates: Dict[str, UpdatedObject] = await self._poll_once() self._update(updates) logger.debug(f"LongPollerClient received udpates: {updates}") for key, updated_object in updates.items(): # NOTE(s...
async def _do_long_poll(self): while True: updates: Dict[str, UpdatedObject] = await self._poll_once() self._update(updates) logger.debug(f"LongPollerClient received updates: {updates}") for key, updated_object in updates.items(): # NOTE(simon): This blocks the loop from ...
https://github.com/ray-project/ray/issues/12384
Exception in callback async_set_result.<locals>.set_future() handle: <Handle async_set_result.<locals>.set_future()> Traceback (most recent call last): File "/Users/simonmo/miniconda3/lib/python3.6/asyncio/events.py", line 145, in _run self._callback(*self._args) File "python/ray/_raylet.pyx", line 1530, in ray._raylet...
AttributeError
async def _get_actor(actor): actor = dict(actor) worker_id = actor["address"]["workerId"] core_worker_stats = DataSource.core_worker_stats.get(worker_id, {}) actor_constructor = core_worker_stats.get("actorTitle", "Unknown actor constructor") actor["actorConstructor"] = actor_constructor actor.u...
async def _get_actor(actor): actor = dict(actor) worker_id = actor["address"]["workerId"] core_worker_stats = DataSource.core_worker_stats.get(worker_id, {}) actor_constructor = core_worker_stats.get("actorTitle", "Unknown actor constructor") actor["actorConstructor"] = actor_constructor actor.u...
https://github.com/ray-project/ray/issues/11631
Error: Traceback (most recent call last): File "/home/ubuntu/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/utils.py", line 347, in _update_cache response = task.result() File "/home/ubuntu/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/modules/stats_collector/stats_collector_head.py", line 77, in get...
TypeError
def get_address_info_from_redis_helper( redis_address, node_ip_address, redis_password=None ): redis_ip_address, redis_port = redis_address.split(":") # Get node table from global state accessor. global_state = ray.state.GlobalState() global_state._initialize_global_state(redis_address, redis_passwo...
def get_address_info_from_redis_helper( redis_address, node_ip_address, redis_password=None ): redis_ip_address, redis_port = redis_address.split(":") # Get node table from global state accessor. global_state = ray.state.GlobalState() global_state._initialize_global_state(redis_address, redis_passwo...
https://github.com/ray-project/ray/issues/11943
020-11-11 14:48:28,960 INFO worker.py:672 -- Connecting to existing Ray cluster at address: ***:*** 2020-11-11 14:48:28,968 WARNING services.py:218 -- Some processes that the driver needs to connect to have not registered with Redis, so retrying. Have you run 'ray start' on this node? 2020-11-11 14:48:29,977 WARNING se...
RuntimeError
def __init__(self): self.indent_level = 0 self._verbosity = 0 self._verbosity_overriden = False self._color_mode = "auto" self._log_style = "record" self.pretty = False self.interactive = False # store whatever colorful has detected for future use if # the color ouput is toggled (c...
def __init__(self): self.indent_level = 0 self._verbosity = 0 self._color_mode = "auto" self._log_style = "record" self.pretty = False self.interactive = False # store whatever colorful has detected for future use if # the color ouput is toggled (colorful detects # of supported colors,...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def verbosity(self): if self._verbosity_overriden: return self._verbosity elif not self.pretty: return 999 return self._verbosity
def verbosity(self): if not self.pretty: return 999 return self._verbosity
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def _set_verbosity(self, x): self._verbosity = x self._verbosity_overriden = True
def _set_verbosity(self, x): self._verbosity = x
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def rsync( config_file: str, source: Optional[str], target: Optional[str], override_cluster_name: Optional[str], down: bool, ip_address: Optional[str] = None, use_internal_ip: bool = False, no_config_cache: bool = False, all_nodes: bool = False, _runner: ModuleType = subprocess, ...
def rsync( config_file: str, source: Optional[str], target: Optional[str], override_cluster_name: Optional[str], down: bool, ip_address: Optional[str] = None, use_internal_ip: bool = False, no_config_cache: bool = False, all_nodes: bool = False, _runner: ModuleType = subprocess, ...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def rsync_to_node(node_id, is_head_node): updater = NodeUpdaterThread( node_id=node_id, provider_config=config["provider"], provider=provider, auth_config=config["auth"], cluster_name=config["cluster_name"], file_mounts=config["file_mounts"], initialization_co...
def rsync_to_node(node_id, is_head_node): updater = NodeUpdaterThread( node_id=node_id, provider_config=config["provider"], provider=provider, auth_config=config["auth"], cluster_name=config["cluster_name"], file_mounts=config["file_mounts"], initialization_co...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def __init__( self, local_dir: str, remote_dir: str, sync_client: Optional[SyncClient] = None ): configure_logging( log_style="record", verbosity=env_integer("TUNE_SYNCER_VERBOSITY", 0) ) self.local_ip = services.get_node_ip_address() self.worker_ip = None sync_client = sync_client or D...
def __init__( self, local_dir: str, remote_dir: str, sync_client: Optional[SyncClient] = None ): self.local_ip = services.get_node_ip_address() self.worker_ip = None sync_client = sync_client or DockerSyncClient() sync_client.configure(self._cluster_config_file) super(NodeSyncer, self).__init_...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def reset_trial(self, trial, new_config, new_experiment_tag, logger_creator=None): """Tries to invoke `Trainable.reset()` to reset trial. Args: trial (Trial): Trial to be reset. new_config (dict): New configuration for Trial trainable. new_experiment_tag (str): New experiment name for t...
def reset_trial(self, trial, new_config, new_experiment_tag, logger_creator=None): """Tries to invoke `Trainable.reset()` to reset trial. Args: trial (Trial): Trial to be reset. new_config (dict): New configuration for Trial trainable. new_experiment_tag (str): New experiment name for t...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def reset(self, new_config, logger_creator=None): """Resets trial for use with new config. Subclasses should override reset_config() to actually reset actor behavior for the new config.""" self.config = new_config self._result_logger.flush() self._result_logger.close() if logger_creator: ...
def reset(self, new_config, logger_creator=None): """Resets trial for use with new config. Subclasses should override reset_config() to actually reset actor behavior for the new config.""" self.config = new_config self._result_logger.flush() self._result_logger.close() self._create_logger...
https://github.com/ray-project/ray/issues/12172
2020-11-19 19:42:27,243 VINFO updater.py:460 -- `rsync`ed /root/ray_results/tune_mnist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (remote) to /root/ray_results/tune_mn ist_pbt/DEFAULT_1d092_00006_6_layer_1_size=128,layer_2_size=64_2020-11-19_19-41-58/ (local) 2020-11-19 19:42:27,247...
ray.tune.error.TuneError
def _bootstrap_config( config: Dict[str, Any], no_config_cache: bool = False ) -> Dict[str, Any]: config = prepare_config(config) hasher = hashlib.sha1() hasher.update(json.dumps([config], sort_keys=True).encode("utf-8")) cache_key = os.path.join( tempfile.gettempdir(), "ray-config-{}".form...
def _bootstrap_config( config: Dict[str, Any], no_config_cache: bool = False ) -> Dict[str, Any]: config = prepare_config(config) hasher = hashlib.sha1() hasher.update(json.dumps([config], sort_keys=True).encode("utf-8")) cache_key = os.path.join( tempfile.gettempdir(), "ray-config-{}".form...
https://github.com/ray-project/ray/issues/12195
(base) ➜ tune git:(fix-kubernetes-dep) ✗ ray up $CFG -y Cluster: basic Checking AWS environment settings Traceback (most recent call last): File "/Users/rliaw/miniconda3/bin/ray", line 8, in <module> sys.exit(main()) File "/Users/rliaw/miniconda3/lib/python3.7/site-packages/ray/scripts/scripts.py", line 1471, in main...
AttributeError
async def get_node_workers(cls, node_id): workers = [] node_ip = DataSource.node_id_to_ip[node_id] node_logs = DataSource.ip_and_pid_to_logs.get(node_ip, {}) node_errs = DataSource.ip_and_pid_to_errors.get(node_ip, {}) node_physical_stats = DataSource.node_physical_stats.get(node_id, {}) node_st...
async def get_node_workers(cls, node_id): workers = [] node_ip = DataSource.node_id_to_ip[node_id] node_logs = DataSource.ip_and_pid_to_logs.get(node_ip, {}) logger.error(node_logs) node_errs = DataSource.ip_and_pid_to_errors.get(node_ip, {}) logger.error(node_errs) node_physical_stats = Dat...
https://github.com/ray-project/ray/issues/12126
Error: Traceback (most recent call last): File "/root/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/utils.py", line 351, in _update_cache response = task.result() File "/root/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/modules/stats_collector/stats_collector_head.py", line 89, in get_all_nodes all...
KeyError
async def get_node_info(cls, node_id): node_physical_stats = dict(DataSource.node_physical_stats.get(node_id, {})) node_stats = dict(DataSource.node_stats.get(node_id, {})) node = DataSource.nodes.get(node_id, {}) node_ip = DataSource.node_id_to_ip.get(node_id) # Merge node log count information int...
async def get_node_info(cls, node_id): node_physical_stats = dict(DataSource.node_physical_stats.get(node_id, {})) node_stats = dict(DataSource.node_stats.get(node_id, {})) node = DataSource.nodes.get(node_id, {}) node_ip = DataSource.node_id_to_ip.get(node_id) # Merge node log count information int...
https://github.com/ray-project/ray/issues/12126
Error: Traceback (most recent call last): File "/root/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/utils.py", line 351, in _update_cache response = task.result() File "/root/anaconda3/lib/python3.7/site-packages/ray/new_dashboard/modules/stats_collector/stats_collector_head.py", line 89, in get_all_nodes all...
KeyError
def unflatten_dict(dt, delimiter="/"): """Unflatten dict. Does not support unflattening lists.""" dict_type = type(dt) out = dict_type() for key, val in dt.items(): path = key.split(delimiter) item = out for k in path[:-1]: item = item.setdefault(k, dict_type()) ...
def unflatten_dict(dt, delimiter="/"): """Unflatten dict. Does not support unflattening lists.""" out = defaultdict(dict) for key, val in dt.items(): path = key.split(delimiter) item = out for k in path[:-1]: item = item[k] item[path[-1]] = val return dict(out...
https://github.com/ray-project/ray/issues/11947
$ python ./python/ray/tune/examples/bohb_example.py File descriptor limit 256 is too low for production servers and may result in connection errors. At least 8192 is recommended. --- Fix with 'ulimit -n 8192' 2020-11-11 20:38:44,944 INFO services.py:1110 -- View the Ray dashboard at http://127.0.0.1:8265 Traceback (mos...
KeyError