The CVPR Survival Guide: Discovering Research That's Interesting to YOU!
โข
9
title
: The title of the paperauthors_list
: The list of authorsabstract
: The abstract of the paperarxiv_link
: Link to the paper on arXivother_link
: Link to the project page, if foundcategory_name
: The primary category this paper according to [arXiv taxonomy](https://arxiv.org/category_taxonomy)all_categories
: All categories this paper falls into, according to arXiv taxonomykeywords
: Extracted using GPT-4otitle
: The title of the paperauthors_list
: The list of authorsabstract
: The abstract of the paperarxiv_link
: Link to the paper on arXivother_link
: Link to the project page, if foundcategory_name
: The primary category this paper according to [arXiv taxonomy](https://arxiv.org/category_taxonomy)all_categories
: All categories this paper falls into, according to arXiv taxonomykeywords
: Extracted using GPT-4oDope!
0.23.8
, the FiftyOne open source library for dataset curation and visualization is now integrated with the Hugging Face Hub!pip install -U fiftyone
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
dataset = fouh.load_from_hub(
"mnist",
format="ParquetFilesDataset",
classification_fields="label",
)
session = fo.launch_app(dataset)
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
dataset = fouh.load_from_hub("jamarks/VisDrone2019-DET", max_samples=1000)
# Launch the App
session = fo.launch_app(dataset)
import fiftyone.zoo as foz
import fiftyone.utils.huggingface as fouh
dataset = foz.load_zoo_dataset("quickstart")
fouh.push_to_hub(dataset, "my-dataset")
from unsloth import FastLanguageModel
model, tokenzer = FastLanguageModel.from_pretrained("unsloth/gemma-7b")
model = FastLanguageModel.get_peft_model(model)
huggingface_hub
Python library!PyTorchHubMixin
now supports configs and safetensors!audio-to-audio
supported in the InferenceClient!