Skip to content

Commit 57b0b6a

Browse files
authored
Remove autointent org from docs (#186)
* lint * update paths
1 parent 8ba9535 commit 57b0b6a

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

autointent/_dataset/_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def from_hub(cls, repo_name: str) -> "Dataset":
9898
"""Loads a dataset from the Hugging Face Hub.
9999
100100
Args:
101-
repo_name: The name of the Hugging Face repository, like `AutoIntent/clinc150`.
101+
repo_name: The name of the Hugging Face repository, like `DeepPavlov/clinc150`.
102102
"""
103103
from ._reader import DictReader
104104

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
},
127127
{
128128
"name": "HuggingFace",
129-
"url": "https://huggingface.co/AutoIntent",
129+
"url": "https://huggingface.co/DeepPavlov",
130130
"icon": f"{BASE_STATIC_URL}/hf-logo.svg",
131131
"type": "local",
132132
},

tests/data/test_oos_handling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def count_oos(split: HFDataset):
1010

1111

1212
def create_clinc150_subset():
13-
clinc = Dataset.from_hub("AutoIntent/clinc150")
13+
clinc = Dataset.from_hub("DeepPavlov/clinc150")
1414

1515
intents_subset = clinc.intents[:4]
1616
intent_ids = [intent.id for intent in intents_subset]

user_guides/advanced/01_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
"""
195195

196196
# %%
197-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
197+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
198198

199199
# %% [markdown]
200200
"""

user_guides/advanced/02_automl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
# %%
121121
from autointent import Dataset
122122

123-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
123+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
124124

125125
# %% [markdown]
126126
"""

user_guides/advanced/03_reporting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
from autointent import Dataset
5151

52-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
52+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
5353

5454
# %% [markdown]
5555
"""

user_guides/advanced/04_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
pipeline_optimizer = Pipeline.from_search_space(search_space)
4141
pipeline_optimizer.set_config(log_config)
4242

43-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
43+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
4444

4545
# %% [markdown]
4646
"""

user_guides/basic_usage/01_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"""
105105

106106
# %%
107-
Dataset.from_hub("AutoIntent/banking77")
107+
Dataset.from_hub("DeepPavlov/banking77")
108108

109109
# %% [markdown]
110110
"""

user_guides/basic_usage/02_modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# %%
4444
from autointent import Dataset
4545

46-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
46+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
4747
dataset
4848

4949
# %% [markdown]

user_guides/basic_usage/03_automl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# %%
1717
from autointent import Dataset
1818

19-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
19+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
2020
dataset
2121

2222
# %%
@@ -124,7 +124,7 @@
124124
from autointent.utils import load_preset
125125

126126
# load data
127-
dataset = Dataset.from_hub("AutoIntent/clinc150_subset")
127+
dataset = Dataset.from_hub("DeepPavlov/clinc150_subset")
128128

129129
# customize search space
130130
preset = load_preset("light_extra")

0 commit comments

Comments
 (0)