Instructions to use FangDai/Tiger-Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use FangDai/Tiger-Model with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("FangDai/Tiger-Model", dtype=torch.bfloat16, device_map="cuda") 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
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,7 +45,7 @@ $ pip install -r requirements.txt
|
|
| 45 |
We have shared part of the thyroid ultrasound dataset for verification. Please refer to this article for other studies using this dataset.
|
| 46 |
If you use this dataset in your research, please cite the following references:
|
| 47 |
A portion of the data from this article is publicly available on Huggingface ([https://huggingface.co/datasets/FangDai/Thyroid_Ultrasound_Images](https://huggingface.co/datasets/FangDai/Thyroid_Ultrasound_Images). To download this dataset, you must register on Hugging Face and sign our data usage application before gaining access.
|
| 48 |
-
. To download this dataset, you must register on Hugging Face and sign our data usage application before gaining access.
|
| 48 |
+

|
| 49 |
|
| 50 |
Please read the following information for data usage permissions and the conditions for accessing the full dataset.
|
| 51 |
```
|