Files
huggingface--peft/examples/conditional_generation/peft_prompt_tuning_seq2seq_with_generate.ipynb
wehub-resource-sync caf324b09d
Build documentation / build (push) Failing after 0s
Deploy "method_comparison" Gradio to Spaces / deploy (push) Has been cancelled
Deploy "PEFT shop" Gradio app to Spaces / deploy (push) Has been cancelled
tests on transformers main / tests (push) Has been cancelled
tests / check_code_quality (push) Has been cancelled
tests / tests (ubuntu-latest, 3.10) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.11) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.12) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.13) (push) Has been cancelled
tests / tests (windows-latest, 3.10) (push) Has been cancelled
tests / tests (windows-latest, 3.11) (push) Has been cancelled
tests / tests (windows-latest, 3.12) (push) Has been cancelled
tests / tests (windows-latest, 3.13) (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
CI security linting / zizmor latest via Cargo (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:24:42 +08:00

713 lines
24 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "5f93b7d1",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:49:56.334329Z",
"start_time": "2023-05-30T09:49:54.494916Z"
}
},
"outputs": [],
"source": [
"import os\n",
"\n",
"import torch\n",
"from transformers import (\n",
" AutoTokenizer,\n",
" default_data_collator,\n",
" AutoModelForSeq2SeqLM,\n",
" Seq2SeqTrainingArguments,\n",
" Seq2SeqTrainer,\n",
" GenerationConfig,\n",
")\n",
"from peft import get_peft_model, PromptTuningInit, PromptTuningConfig, TaskType\n",
"from datasets import load_dataset\n",
"\n",
"os.environ[\"TOKENIZERS_PARALLELISM\"] = \"false\"\n",
"\n",
"device = torch.accelerator.current_accelerator().type if hasattr(torch, \"accelerator\") else \"cuda\"\n",
"model_name_or_path = \"t5-large\"\n",
"tokenizer_name_or_path = \"t5-large\"\n",
"\n",
"checkpoint_name = \"financial_sentiment_analysis_prefix_tuning_v1.pt\"\n",
"text_column = \"sentence\"\n",
"label_column = \"text_label\"\n",
"max_length = 8\n",
"lr = 1e0\n",
"num_epochs = 5\n",
"batch_size = 8"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "8d0850ac",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:50:04.808527Z",
"start_time": "2023-05-30T09:49:56.953075Z"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"trainable params: 40,960 || all params: 737,709,056 || trainable%: 0.0056\n"
]
},
{
"data": {
"text/plain": [
"PeftModelForSeq2SeqLM(\n",
" (base_model): T5ForConditionalGeneration(\n",
" (shared): Embedding(32128, 1024)\n",
" (encoder): T5Stack(\n",
" (embed_tokens): Embedding(32128, 1024)\n",
" (block): ModuleList(\n",
" (0): T5Block(\n",
" (layer): ModuleList(\n",
" (0): T5LayerSelfAttention(\n",
" (SelfAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (relative_attention_bias): Embedding(32, 16)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (1): T5LayerFF(\n",
" (DenseReluDense): T5DenseActDense(\n",
" (wi): Linear(in_features=1024, out_features=4096, bias=False)\n",
" (wo): Linear(in_features=4096, out_features=1024, bias=False)\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" (act): ReLU()\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" )\n",
" )\n",
" (1-23): 23 x T5Block(\n",
" (layer): ModuleList(\n",
" (0): T5LayerSelfAttention(\n",
" (SelfAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (1): T5LayerFF(\n",
" (DenseReluDense): T5DenseActDense(\n",
" (wi): Linear(in_features=1024, out_features=4096, bias=False)\n",
" (wo): Linear(in_features=4096, out_features=1024, bias=False)\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" (act): ReLU()\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" )\n",
" )\n",
" )\n",
" (final_layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (decoder): T5Stack(\n",
" (embed_tokens): Embedding(32128, 1024)\n",
" (block): ModuleList(\n",
" (0): T5Block(\n",
" (layer): ModuleList(\n",
" (0): T5LayerSelfAttention(\n",
" (SelfAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (relative_attention_bias): Embedding(32, 16)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (1): T5LayerCrossAttention(\n",
" (EncDecAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (2): T5LayerFF(\n",
" (DenseReluDense): T5DenseActDense(\n",
" (wi): Linear(in_features=1024, out_features=4096, bias=False)\n",
" (wo): Linear(in_features=4096, out_features=1024, bias=False)\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" (act): ReLU()\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" )\n",
" )\n",
" (1-23): 23 x T5Block(\n",
" (layer): ModuleList(\n",
" (0): T5LayerSelfAttention(\n",
" (SelfAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (1): T5LayerCrossAttention(\n",
" (EncDecAttention): T5Attention(\n",
" (q): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (k): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (v): Linear(in_features=1024, out_features=1024, bias=False)\n",
" (o): Linear(in_features=1024, out_features=1024, bias=False)\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (2): T5LayerFF(\n",
" (DenseReluDense): T5DenseActDense(\n",
" (wi): Linear(in_features=1024, out_features=4096, bias=False)\n",
" (wo): Linear(in_features=4096, out_features=1024, bias=False)\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" (act): ReLU()\n",
" )\n",
" (layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" )\n",
" )\n",
" )\n",
" (final_layer_norm): T5LayerNorm()\n",
" (dropout): Dropout(p=0.1, inplace=False)\n",
" )\n",
" (lm_head): Linear(in_features=1024, out_features=32128, bias=False)\n",
" )\n",
" (prompt_encoder): ModuleDict(\n",
" (default): PromptEmbedding(\n",
" (embedding): Embedding(40, 1024)\n",
" )\n",
" )\n",
" (word_embeddings): Embedding(32128, 1024)\n",
")"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# creating model\n",
"peft_config = peft_config = PromptTuningConfig(\n",
" task_type=TaskType.SEQ_2_SEQ_LM,\n",
" prompt_tuning_init=PromptTuningInit.TEXT,\n",
" num_virtual_tokens=20,\n",
" prompt_tuning_init_text=\"What is the sentiment of this article?\\n\",\n",
" inference_mode=False,\n",
" tokenizer_name_or_path=model_name_or_path,\n",
")\n",
"\n",
"model = AutoModelForSeq2SeqLM.from_pretrained(model_name_or_path)\n",
"model = get_peft_model(model, peft_config)\n",
"model.print_trainable_parameters()\n",
"model"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "4ee2babf",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:50:09.224782Z",
"start_time": "2023-05-30T09:50:08.172611Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Using the latest cached version of the dataset since financial_phrasebank couldn't be found on the Hugging Face Hub\n",
"Found the latest cached dataset configuration 'sentences_allagree' at /root/.cache/huggingface/datasets/financial_phrasebank/sentences_allagree/1.0.0/550bde12e6c30e2674da973a55f57edde5181d53f5a5a34c1531c53f93b7e141 (last modified on Thu Jul 31 06:43:45 2025).\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "79ef90cbad2f4c2088f01102cadb8a3b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map: 0%| | 0/2037 [00:00<?, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0f5b177b658646cfa90b3a2801138807",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Map: 0%| | 0/227 [00:00<?, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"{'sentence': 'This new partnership agreement represents a significant milestone for both parties .',\n",
" 'label': 2,\n",
" 'text_label': 'positive'}"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# loading dataset\n",
"dataset = load_dataset(\"financial_phrasebank\", \"sentences_allagree\")\n",
"dataset = dataset[\"train\"].train_test_split(test_size=0.1)\n",
"dataset[\"validation\"] = dataset[\"test\"]\n",
"del dataset[\"test\"]\n",
"\n",
"classes = dataset[\"train\"].features[\"label\"].names\n",
"dataset = dataset.map(\n",
" lambda x: {\"text_label\": [classes[label] for label in x[\"label\"]]},\n",
" batched=True,\n",
" num_proc=1,\n",
")\n",
"\n",
"dataset[\"train\"][0]"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "adf9608c",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:50:12.176663Z",
"start_time": "2023-05-30T09:50:11.421273Z"
}
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0a5f7b5967704fab97f11bc07813625c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Running tokenizer on dataset: 0%| | 0/2037 [00:00<?, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1ff9578c074e4736a8812f6ffc8138b5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Running tokenizer on dataset: 0%| | 0/227 [00:00<?, ? examples/s]"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# data preprocessing\n",
"tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)\n",
"\n",
"\n",
"def preprocess_function(examples):\n",
" inputs = examples[text_column]\n",
" targets = examples[label_column]\n",
" model_inputs = tokenizer(inputs, max_length=max_length, padding=\"max_length\", truncation=True, return_tensors=\"pt\")\n",
" labels = tokenizer(targets, max_length=2, padding=\"max_length\", truncation=True, return_tensors=\"pt\")\n",
" labels = labels[\"input_ids\"]\n",
" labels[labels == tokenizer.pad_token_id] = -100\n",
" model_inputs[\"labels\"] = labels\n",
" return model_inputs\n",
"\n",
"\n",
"processed_datasets = dataset.map(\n",
" preprocess_function,\n",
" batched=True,\n",
" num_proc=1,\n",
" remove_columns=dataset[\"train\"].column_names,\n",
" load_from_cache_file=False,\n",
" desc=\"Running tokenizer on dataset\",\n",
")\n",
"\n",
"train_dataset = processed_datasets[\"train\"].shuffle()\n",
"eval_dataset = processed_datasets[\"validation\"]"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "6b3a4090",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:53:10.336984Z",
"start_time": "2023-05-30T09:50:14.780995Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[W731 07:06:51.135038656 OperatorEntry.cpp:217] Warning: Warning only once for all operators, other operators may also be overridden.\n",
" Overriding a previously registered kernel for the same operator and the same dispatch key\n",
" operator: aten::geometric_(Tensor(a!) self, float p, *, Generator? generator=None) -> Tensor(a!)\n",
" registered at /pytorch/build/aten/src/ATen/RegisterSchema.cpp:6\n",
" dispatch key: XPU\n",
" previous kernel: registered at /pytorch/aten/src/ATen/VmapModeRegistrations.cpp:37\n",
" new kernel: registered at /build/intel-pytorch-extension/build/Release/csrc/gpu/csrc/gpu/xpu/ATen/RegisterXPU_0.cpp:172 (function operator())\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"[2025-07-31 07:06:51,984] [INFO] [real_accelerator.py:254:get_accelerator] Setting ds_accelerator to xpu (auto detect)\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/usr/bin/ld: cannot find -laio: No such file or directory\n",
"collect2: error: ld returned 1 exit status\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"[2025-07-31 07:06:52,955] [INFO] [logging.py:107:log_dist] [Rank -1] [TorchCheckpointEngine] Initialized with serialization = False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"No label_names provided for model class `PeftModelForSeq2SeqLM`. Since `PeftModel` hides base models input arguments, if label_names is not given, label_names can't be set automatically within `Trainer`. Note that empty label_names list will be used instead.\n"
]
},
{
"data": {
"text/html": [
"\n",
" <div>\n",
" \n",
" <progress value='1275' max='1275' style='width:300px; height:20px; vertical-align: middle;'></progress>\n",
" [1275/1275 03:31, Epoch 5/5]\n",
" </div>\n",
" <table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: left;\">\n",
" <th>Epoch</th>\n",
" <th>Training Loss</th>\n",
" <th>Validation Loss</th>\n",
" <th>Accuracy</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td>1</td>\n",
" <td>2.169900</td>\n",
" <td>0.507156</td>\n",
" <td>0.621145</td>\n",
" </tr>\n",
" <tr>\n",
" <td>2</td>\n",
" <td>0.537700</td>\n",
" <td>0.430996</td>\n",
" <td>0.651982</td>\n",
" </tr>\n",
" <tr>\n",
" <td>3</td>\n",
" <td>0.482200</td>\n",
" <td>0.426718</td>\n",
" <td>0.696035</td>\n",
" </tr>\n",
" <tr>\n",
" <td>4</td>\n",
" <td>0.459700</td>\n",
" <td>0.470894</td>\n",
" <td>0.682819</td>\n",
" </tr>\n",
" <tr>\n",
" <td>5</td>\n",
" <td>0.436000</td>\n",
" <td>0.409604</td>\n",
" <td>0.718062</td>\n",
" </tr>\n",
" </tbody>\n",
"</table><p>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"TrainOutput(global_step=1275, training_loss=0.8170911183076747, metrics={'train_runtime': 213.5513, 'train_samples_per_second': 47.693, 'train_steps_per_second': 5.97, 'total_flos': 344546979840000.0, 'train_loss': 0.8170911183076747, 'epoch': 5.0})"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# training and evaluation\n",
"\n",
"\n",
"def compute_metrics(eval_preds):\n",
" preds, labels = eval_preds\n",
" preds = tokenizer.batch_decode(preds, skip_special_tokens=True)\n",
" labels = tokenizer.batch_decode(labels, skip_special_tokens=True)\n",
"\n",
" correct = 0\n",
" total = 0\n",
" for pred, true in zip(preds, labels):\n",
" if pred.strip() == true.strip():\n",
" correct += 1\n",
" total += 1\n",
" accuracy = correct / total\n",
" return {\"accuracy\": accuracy}\n",
"\n",
"\n",
"training_args = Seq2SeqTrainingArguments(\n",
" \"out\",\n",
" per_device_train_batch_size=batch_size,\n",
" learning_rate=lr,\n",
" num_train_epochs=num_epochs,\n",
" eval_strategy=\"epoch\",\n",
" logging_strategy=\"epoch\",\n",
" save_strategy=\"no\",\n",
" report_to=[],\n",
" predict_with_generate=True,\n",
" generation_config=GenerationConfig(max_length=max_length),\n",
")\n",
"trainer = Seq2SeqTrainer(\n",
" model=model,\n",
" processing_class=tokenizer,\n",
" args=training_args,\n",
" train_dataset=train_dataset,\n",
" eval_dataset=eval_dataset,\n",
" data_collator=default_data_collator,\n",
" compute_metrics=compute_metrics,\n",
")\n",
"trainer.train()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "a8de6005",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:53:13.045146Z",
"start_time": "2023-05-30T09:53:13.035612Z"
}
},
"outputs": [],
"source": [
"# saving model\n",
"peft_model_id = f\"{model_name_or_path}_{peft_config.peft_type}_{peft_config.task_type}\"\n",
"model.save_pretrained(peft_model_id)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "bd20cd4c",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:53:15.240763Z",
"start_time": "2023-05-30T09:53:15.059304Z"
}
},
"outputs": [],
"source": [
"ckpt = f\"{peft_model_id}/adapter_model.safetensors\"\n",
"!du -h $ckpt"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "76c2fc29",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:53:25.055105Z",
"start_time": "2023-05-30T09:53:17.797989Z"
}
},
"outputs": [],
"source": [
"from peft import PeftModel, PeftConfig\n",
"\n",
"peft_model_id = f\"{model_name_or_path}_{peft_config.peft_type}_{peft_config.task_type}\"\n",
"\n",
"config = PeftConfig.from_pretrained(peft_model_id)\n",
"model = AutoModelForSeq2SeqLM.from_pretrained(config.base_model_name_or_path)\n",
"model = PeftModel.from_pretrained(model, peft_model_id)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "d997f1cc",
"metadata": {
"ExecuteTime": {
"end_time": "2023-05-30T09:53:26.777030Z",
"start_time": "2023-05-30T09:53:26.013697Z"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"EPS grew to 0.04 eur from 0.02 eur .\n",
"{'input_ids': tensor([[ 3, 24935, 3, 4774, 12, 4097, 6348, 3, 1238, 45,\n",
" 4097, 4305, 3, 1238, 3, 5, 1]]), 'attention_mask': tensor([[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]])}\n",
"tensor([[ 0, 1465, 1]])\n",
"['positive']\n"
]
}
],
"source": [
"model.eval()\n",
"i = 107\n",
"inputs = tokenizer(dataset[\"validation\"][text_column][i], return_tensors=\"pt\")\n",
"print(dataset[\"validation\"][text_column][i])\n",
"print(inputs)\n",
"\n",
"with torch.no_grad():\n",
" outputs = model.generate(input_ids=inputs[\"input_ids\"], max_new_tokens=10)\n",
" print(outputs)\n",
" print(tokenizer.batch_decode(outputs.detach().cpu().numpy(), skip_special_tokens=True))"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "fb746c1e",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"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.11.13"
},
"toc": {
"base_numbering": 1,
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
},
"varInspector": {
"cols": {
"lenName": 16,
"lenType": 16,
"lenVar": 40
},
"kernels_config": {
"python": {
"delete_cmd_postfix": "",
"delete_cmd_prefix": "del ",
"library": "var_list.py",
"varRefreshCmd": "print(var_dic_list())"
},
"r": {
"delete_cmd_postfix": ") ",
"delete_cmd_prefix": "rm(",
"library": "var_list.r",
"varRefreshCmd": "cat(var_dic_list()) "
}
},
"types_to_exclude": [
"module",
"function",
"builtin_function_or_method",
"instance",
"_Feature"
],
"window_display": false
},
"vscode": {
"interpreter": {
"hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}