Icon | Name | Chapters |
---|---|---|
Battery | 12.7. 18.3. | |
Hose | 7.5. 11.X. 16.8. | |
Bearing | 8.6. 15.X. 18.8. | |
 |
Google Drive integration | Y (documents yes, folders not sure) | N | Y |
iOS app | Y | Y | Y |
macOS app | Y | Y | Y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Reference: https://github.com/ray-project/ray/blob/f8a91c7fad248b1c7f81fd6d30191ac930a92bc4/rllib/examples/env/simple_corridor.py | |
Fixes: | |
ValueError: ('Observation ({}) outside given space ({})!', array([0.]), Box([0.], [999.], (1,), float32)) | |
""" | |
import gym | |
from gym.spaces import Box, Discrete | |
import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# These files should exist: | |
# $ ls | |
# ILSVRC2012_devkit_t12.tar.gz ILSVRC2012_img_train.tar ILSVRC2012_img_val.tar | |
# | |
# When this script is finished: | |
# $ ls | |
# imagenet ILSVRC2012_devkit_t12.tar.gz ILSVRC2012_img_train.tar ILSVRC2012_img_val.tar | |
# $ ls imagenet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matplotlib | |
pandas | |
seaborn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2021-05-24 11:19:29,390 I 45231 22642740] core_worker.cc:136: Constructing CoreWorkerProcess. pid: 45231 | |
[2021-05-24 11:19:29,392 I 45231 22642740] core_worker.cc:356: Constructing CoreWorker, worker_id: 4cb7089af9b4fdf0d82db7aab34b6c55f5d2c379ec4c51d827347638 | |
[2021-05-24 11:19:29,393 I 45231 22642740] grpc_server.cc:71: worker server started, listening on port 56935. | |
[2021-05-24 11:19:29,398 I 45231 22642740] core_worker.cc:420: Initializing worker at address: 192.168.1.219:56935, worker ID 4cb7089af9b4fdf0d82db7aab34b6c55f5d2c379ec4c51d827347638, raylet 72987f65065c125c627d638cb028d79918cf2929f7353e4ade347e19 | |
[2021-05-24 11:19:29,407 I 45231 22642740] core_worker.cc:285: Worker 4cb7089af9b4fdf0d82db7aab34b6c55f5d2c379ec4c51d827347638 is created. | |
[2021-05-24 11:19:29,407 I 45231 22642740] io_service_pool.cc:35: IOServicePool is running with 1 io_service. | |
[2021-05-24 11:19:29,407 I 45231 22644291] service_based_accessor.cc:579: Received notification for node id = 72987f65065c125c627d638cb028d79918cf2929f7353 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Reference: https://github.com/ray-project/ray/blob/f8a91c7fad248b1c7f81fd6d30191ac930a92bc4/rllib/examples/env/simple_corridor.py | |
Fixes: | |
ValueError: ('Observation ({}) outside given space ({})!', array([0.]), Box([0.], [999.], (1,), float32)) | |
""" | |
import gym | |
from gym.spaces import Box, Discrete | |
import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Dict, List, Optional, TYPE_CHECKING | |
from ray.rllib.agents.callbacks import DefaultCallbacks | |
from ray.rllib.env import BaseEnv | |
from ray.rllib.policy import Policy | |
from ray.rllib.policy.sample_batch import SampleBatch | |
from ray.rllib.evaluation import MultiAgentEpisode | |
from ray.rllib.utils.annotations import PublicAPI | |
from ray.rllib.utils.deprecation import deprecation_warning | |
from ray.rllib.utils.typing import AgentID, PolicyID |
Ubuntu 20.04 uses python 3.8.
Install virtual environment tool:
sudo apt update
sudo apt install python3-venv
Create a virtual environment for Python: