Imagine you (taker) are standing behind camera, i.e., taking a photo using the camera, and a viewer is standing in front of camera.
- +X right
- +Y up
- +Z towards taker aka backwards, so "look-at" direction is -Z
| cmake_minimum_required(VERSION 3.5) | |
| project(minimal_tf_broadcasters) | |
| find_package(ament_cmake REQUIRED) | |
| find_package(rclcpp REQUIRED) | |
| find_package(geometry_msgs REQUIRED) | |
| find_package(tf2 REQUIRED) | |
| find_package(tf2_ros REQUIRED) | |
| find_package(tf2_geometry_msgs REQUIRED) |
A Python script to automatically scrape vLLM serve command documentation and generate a clean YAML configuration file with all available flags and their default values.
lsblk and check the mount point, e.g., /dev/sda which might have different partitions like /dev/sda1 etcsudo umount /dev/sda*. Use sudo umount -l /dev/sda* if something refuses to unmountsudo fdisk /dev/sda to delete all partitions one-by-one:
p to print the current partitionsd to delete each partition (repeat for all).w to write changes and exit.d until you get no partitions remaining to be deleted, then do w and exit.sudo parted /dev/sda mklabel gpt to create a new GPT partition tablesudo parted -a optimal /dev/sda mkpart primary 0% 100% creates a new parition (/dev/sda1)| import warnings | |
| warnings.filterwarnings('ignore', category=FutureWarning) | |
| import tensorflow as tf | |
| text = tf.constant("Successfull Installation") | |
| with tf.compat.v1.Session() as sess: | |
| print(sess.run(text)) |
| absl-py >= 0.7.0 | |
| astunparse == 1.6.3 | |
| gast == 0.3.3 | |
| google_pasta >= 0.1.8 | |
| h5py >= 2.10.0, < 2.11.0 | |
| keras_preprocessing >= 1.1.1, < 1.2 | |
| numpy >= 1.16.0, < 1.19.0 | |
| opt_einsum >= 2.3.2 | |
| protobuf >= 3.9.2 | |
| tensorboard >= 2.2.0, < 2.3.0 |
| Variable name | Variable value | Description | |
|---|---|---|---|
| BAZEL_SH | C:\msys64\usr\bin\bash.exe | allows Bazel to access msys64 | |
| BAZEL_VC | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC | allows Bazel to access Visual C++ compiler | |
| BAZEL_WINSDK_FULL_VERSION | 10.0.17763.0 | lets Bazel know the correct Windows SDK version to use |