Instructions to use feyninc/FeyNobg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- nobg
How to use feyninc/FeyNobg with nobg:
pip install nobg
import torch from loadimg import load_img from nobg import AutoModel, AutoProcessor model = AutoModel.from_pretrained("feyninc/FeyNobg").eval() processor = AutoProcessor.from_pretrained("feyninc/FeyNobg") image = load_img("input.jpg").convert("RGB") inputs = processor(image, return_tensors="pt") with torch.no_grad(): outputs = model(pixel_values=inputs["pixel_values"]) alpha = processor.post_process_alpha_matting(outputs, target_sizes=[(image.height, image.width)])[0] processor.cutout(image, alpha).save("output.png") - Notebooks
- Google Colab
- Kaggle
update license
Browse filesas per my internal communication with the original author he did allow us to use apache 2.0 license
README.md
CHANGED
|
@@ -5,7 +5,7 @@ tags:
|
|
| 5 |
- model_hub_mixin
|
| 6 |
- nobg
|
| 7 |
- pytorch_model_hub_mixin
|
| 8 |
-
license:
|
| 9 |
---
|
| 10 |
|
| 11 |
<p align="center">
|
|
|
|
| 5 |
- model_hub_mixin
|
| 6 |
- nobg
|
| 7 |
- pytorch_model_hub_mixin
|
| 8 |
+
license: apache-2.0
|
| 9 |
---
|
| 10 |
|
| 11 |
<p align="center">
|