File size: 4,383 Bytes
ca12d55 |
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 164 165 166 |
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "dd43ab16-dc35-4543-85f4-0ed807778105",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d7becb7d21414751ab22ea11c3a2a647",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/7 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f95ab3554e6a441a9bca1ba07d8e5e0c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"model-00003-of-00004.safetensors: 0%| | 0.00/4.92G [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9c2830b832aa43779f81a4d918aba73f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"model-00004-of-00004.safetensors: 0%| | 0.00/1.17G [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d65d01eb12e94011b4731c41669f8039",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"optimizer.pt: 0%| | 0.00/16.3G [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1ad81ec5aaf34bc3b37e20eb224bb9ae",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"rng_state.pth: 0%| | 0.00/14.2k [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "05994998cc9a4fe5b0334f7dd9352026",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"scheduler.pt: 0%| | 0.00/1.06k [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3dd2cc8fb3914190961c459665c05ba0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"tokenizer.json: 0%| | 0.00/17.2M [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ced411e5a33043d3b28769ac3b6ca9fb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"training_args.bin: 0%| | 0.00/6.20k [00:00<?, ?B/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"CommitInfo(commit_url='https://huggingface.co/Kquant03/L3-8B-Pneuma-chkpt1/commit/ba54aceb20214c80281bf6688371cee82f51682c', commit_message='Upload folder using huggingface_hub', commit_description='', oid='ba54aceb20214c80281bf6688371cee82f51682c', pr_url=None, repo_url=RepoUrl('https://huggingface.co/Kquant03/L3-8B-Pneuma-chkpt1', endpoint='https://huggingface.co', repo_type='model', repo_id='Kquant03/L3-8B-Pneuma-chkpt1'), pr_revision=None, pr_num=None)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from huggingface_hub import HfApi\n",
"api = HfApi()\n",
"\n",
"api.upload_folder(\n",
" folder_path=\"./checkpoint-248\",\n",
" repo_id=\"Kquant03/L3-8B-Pneuma-chkpt1\",\n",
" repo_type=\"model\",\n",
")"
]
}
],
"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.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|