| import logging |
|
|
| import numpy as np |
| import sentencepiece |
| from transformers import AutoProcessor |
|
|
| import openpi.shared.download as download |
|
|
|
|
| class PaligemmaTokenizer: |
| def __init__(self, max_len: int = 48): |
| self._max_len = max_len |
|
|
| path = download.maybe_download("gs://big_vision/paligemma_tokenizer.model", gs={"token": "anon"}) |
| with path.open("rb") as f: |
| self._tokenizer = sentencepiece.SentencePieceProcessor(model_proto=f.read()) |
|
|
| def tokenize(self, prompt: str) -> tuple[np.ndarray, np.ndarray]: |
| cleaned_text = prompt.strip().replace("_", " ").replace("\n", " ") |
| |
| tokens = self._tokenizer.encode(cleaned_text, add_bos=True) + self._tokenizer.encode("\n") |
| tokens_len = len(tokens) |
| if tokens_len < self._max_len: |
| padding = [False] * (self._max_len - tokens_len) |
| mask = [True] * tokens_len + padding |
| tokens = tokens + padding |
| else: |
| if len(tokens) > self._max_len: |
| logging.warning( |
| f"Token length ({len(tokens)}) exceeds max length ({self._max_len}), truncating. " |
| "Consider increasing the `max_token_len` in your model config if this happens frequently." |
| ) |
| tokens = tokens[: self._max_len] |
| mask = [True] * self._max_len |
|
|
| return np.asarray(tokens), np.asarray(mask) |
|
|
|
|
| class FASTTokenizer: |
| def __init__(self, max_len: int = 256, fast_tokenizer_path: str = "physical-intelligence/fast"): |
| self._max_len = max_len |
|
|
| |
| path = download.maybe_download("gs://big_vision/paligemma_tokenizer.model", gs={"token": "anon"}) |
| with path.open("rb") as f: |
| self._paligemma_tokenizer = sentencepiece.SentencePieceProcessor(model_proto=f.read()) |
|
|
| |
| self._fast_tokenizer = AutoProcessor.from_pretrained(fast_tokenizer_path, trust_remote_code=True) |
| self._fast_skip_tokens = 128 |
|
|
| def tokenize( |
| self, prompt: str, state: np.ndarray, actions: np.ndarray | None |
| ) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: |
| cleaned_text = prompt.lower().strip().replace("_", " ") |
|
|
| |
| discretized_state = np.digitize(state, bins=np.linspace(-1, 1, 256 + 1)[:-1]) - 1 |
|
|
| |
| state_str = " ".join(map(str, discretized_state)) |
| prefix = f"Task: {cleaned_text}, State: {state_str};\n" |
| prefix_tokens = self._paligemma_tokenizer.encode(prefix, add_bos=True) |
|
|
| if actions is not None: |
| |
| action_tokens = self._fast_tokenizer(actions[None])[0] |
| action_tokens_in_pg = self._act_tokens_to_paligemma_tokens(action_tokens) |
|
|
| |
| postfix_tokens = ( |
| self._paligemma_tokenizer.encode("Action: ") |
| + action_tokens_in_pg.tolist() |
| + self._paligemma_tokenizer.encode("|", add_eos=True) |
| ) |
| else: |
| postfix_tokens = [] |
|
|
| |
| |
| tokens = prefix_tokens + postfix_tokens |
| token_mask = [True] * len(tokens) |
| ar_mask = [0] * len(prefix_tokens) + [1] * len(postfix_tokens) |
| loss_mask = [False] * len(prefix_tokens) + [True] * len(postfix_tokens) |
|
|
| |
| tokens_len = len(tokens) |
| if tokens_len < self._max_len: |
| padding = [False] * (self._max_len - tokens_len) |
| tokens = tokens + padding |
| token_mask = token_mask + padding |
| ar_mask = ar_mask + padding |
| loss_mask = loss_mask + padding |
| else: |
| if len(tokens) > self._max_len: |
| logging.warning( |
| f"Token length ({len(tokens)}) exceeds max length ({self._max_len}), truncating. " |
| "Consider increasing the `max_token_len` in your model config if this happens frequently." |
| ) |
| tokens = tokens[: self._max_len] |
| token_mask = token_mask[: self._max_len] |
| ar_mask = ar_mask[: self._max_len] |
| loss_mask = loss_mask[: self._max_len] |
|
|
| return np.asarray(tokens), np.asarray(token_mask), np.asarray(ar_mask), np.asarray(loss_mask) |
|
|
| def extract_actions(self, tokens: np.ndarray, action_horizon: int, action_dim: int) -> np.ndarray: |
| |
| decoded_tokens = self._paligemma_tokenizer.decode(tokens.tolist()) |
|
|
| |
| if "Action: " not in decoded_tokens: |
| return np.zeros((action_horizon, action_dim), dtype=np.float32) |
|
|
| |
| raw_action_tokens = np.array( |
| self._paligemma_tokenizer.encode(decoded_tokens.split("Action: ")[1].split("|")[0].strip()) |
| ) |
| action_tokens = self._act_tokens_to_paligemma_tokens(raw_action_tokens) |
| return self._fast_tokenizer.decode( |
| [action_tokens.tolist()], time_horizon=action_horizon, action_dim=action_dim |
| )[0] |
|
|
| def _act_tokens_to_paligemma_tokens(self, tokens: np.ndarray | list[int]) -> np.ndarray: |
| if isinstance(tokens, list): |
| tokens = np.array(tokens) |
| return self._paligemma_tokenizer.vocab_size() - 1 - self._fast_skip_tokens - tokens |
|
|