Instructions to use VERUMNNODE/OS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use VERUMNNODE/OS with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("google/magenta-realtime,THUDM/GLM-4.1V-9B-Thinking,moonshotai/Kimi-K2-Instruct,tencent/Hunyuan-A13B-Instruct,nanonets/Nanonets-OCR-s", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("VERUMNNODE/OS") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
Update README.md
Browse files# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load
import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory
import os
for dirname, _, filenames in os.walk('/kaggle/input'):
for filename in filenames:
print(os.path.join(dirname, filename))
# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All"
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
linkcode
from diffusers import DiffusionPipeline
import torch
# Load the model
pipe = DiffusionPipeline.from_pretrained(
"VERUMNNODE/OS",
torch_dtype=torch.float16,
use_safetensors=True
)
# Move to GPU ifailable
if torch.cuda.is_available():
pipe = pipe.to("cuda")
|
@@ -234,4 +234,35 @@ If you use this model in your research or projects, please cite:
|
|
| 234 |
publisher={Hugging Face},
|
| 235 |
url={https://huggingface.co/VERUMNNODE/OS}
|
| 236 |
}
|
| 237 |
-
kaggle kernels output nina6923/notebook15ab497e3e -p /path/to/dest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 234 |
publisher={Hugging Face},
|
| 235 |
url={https://huggingface.co/VERUMNNODE/OS}
|
| 236 |
}
|
| 237 |
+
kaggle kernels output nina6923/notebook15ab497e3e -p /path/to/dest
|
| 238 |
+
# This Python 3 environment comes with many helpful analytics libraries installed
|
| 239 |
+
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
|
| 240 |
+
# For example, here's several helpful packages to load
|
| 241 |
+
|
| 242 |
+
import numpy as np # linear algebra
|
| 243 |
+
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
|
| 244 |
+
|
| 245 |
+
# Input data files are available in the read-only "../input/" directory
|
| 246 |
+
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory
|
| 247 |
+
|
| 248 |
+
import os
|
| 249 |
+
for dirname, _, filenames in os.walk('/kaggle/input'):
|
| 250 |
+
for filename in filenames:
|
| 251 |
+
print(os.path.join(dirname, filename))
|
| 252 |
+
|
| 253 |
+
# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All"
|
| 254 |
+
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
|
| 255 |
+
linkcode
|
| 256 |
+
from diffusers import DiffusionPipeline
|
| 257 |
+
import torch
|
| 258 |
+
|
| 259 |
+
# Load the model
|
| 260 |
+
pipe = DiffusionPipeline.from_pretrained(
|
| 261 |
+
"VERUMNNODE/OS",
|
| 262 |
+
torch_dtype=torch.float16,
|
| 263 |
+
use_safetensors=True
|
| 264 |
+
)
|
| 265 |
+
|
| 266 |
+
# Move to GPU ifailable
|
| 267 |
+
if torch.cuda.is_available():
|
| 268 |
+
pipe = pipe.to("cuda")
|