File size: 5,761 Bytes
744eb4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from ThirdParty.PointLLM.pointllm.model.pointllm import PointLLMLlamaForCausalLM"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/ydengbd/anaconda3/envs/mich/lib/python3.10/site-packages/huggingface_hub/file_download.py:1142: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.\n",
" warnings.warn(\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loading PointBERT config from /home/ydengbd/Anymate/space/ThirdParty/PointLLM/pointllm/model/pointbert/PointTransformer_8192point_2layer.yaml.\n"
]
}
],
"source": [
"from transformers import AutoConfig\n",
"\n",
"config = AutoConfig.from_pretrained('RunsenXu/PointLLM_7B_v1.2')\n",
"model = PointLLMLlamaForCausalLM(config)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/ydengbd/anaconda3/envs/mich/lib/python3.10/site-packages/huggingface_hub/file_download.py:1142: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.\n",
" warnings.warn(\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loading PointBERT config from /home/ydengbd/Anymate/space/ThirdParty/PointLLM/pointllm/model/pointbert/PointTransformer_8192point_2layer.yaml.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e7003df263064096b0c3838e9deb1cd3",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Loading checkpoint shards: 0%| | 0/3 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/ydengbd/anaconda3/envs/mich/lib/python3.10/site-packages/transformers/modeling_utils.py:415: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.\n",
" return torch.load(checkpoint_file, map_location=\"cpu\")\n"
]
}
],
"source": [
"model2 = PointLLMLlamaForCausalLM.from_pretrained('RunsenXu/PointLLM_7B_v1.2', low_cpu_mem_usage=False, use_cache=True)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loading PointBERT config from /home/ydengbd/Anymate/space/ThirdParty/PointLLM/pointllm/model/pointbert/PointTransformer_8192point_2layer.yaml.\n"
]
}
],
"source": [
"model = PointLLMLlamaForCausalLM(config)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loading PointBERT config from ./ThirdParty/PointLLM/pointllm/model/pointbert/PointTransformer_8192point_2layer.yaml.\n"
]
}
],
"source": [
"from pointllm.model import PointTransformer\n",
"from pointllm.utils import *\n",
"import os\n",
"# address of config file, in the same dir of this file\n",
"point_bert_config_name = \"PointTransformer_8192point_2layer\" # * default for v1.2, v1.1 uses PointTransformer_base_8192point.yaml\n",
"point_bert_config_addr = os.path.join(\"./ThirdParty/PointLLM/pointllm/model/pointbert/PointTransformer_8192point_2layer.yaml\")\n",
"print(f\"Loading PointBERT config from {point_bert_config_addr}.\")\n",
"point_bert_config = cfg_from_yaml_file(point_bert_config_addr)\n",
"if getattr(config, \"use_color\", False):\n",
" point_bert_config.model.point_dims = 6\n",
"use_max_pool = getattr(point_bert_config.model, \"use_max_pool\", False) # * default is false\n",
"\n",
"point_backbone = PointTransformer(point_bert_config.model, use_max_pool=use_max_pool)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "mich",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.15"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|