Skip to content

Commit

Permalink
Merge branch 'development' into distributions
Browse files Browse the repository at this point in the history
  • Loading branch information
victormvy committed Jan 26, 2024
2 parents 21c3b5d + fb04c8e commit 0c5a722
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand All @@ -39,10 +39,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion dlordinal/estimator/pytorch_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PytorchEstimator(BaseEstimator):
A Pytorch device.
max_iter : int
The maximum number of iterations.
\**kwargs : dict
**kwargs : dict
Additional keyword arguments.
"""

Expand Down
26 changes: 2 additions & 24 deletions tutorials/ecoc_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -73,31 +73,9 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Downloading http://yanweifu.github.io/FG_NET_data/FGNET.zip to datasets/fgnet/fgnet.zip\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"100%|██████████| 46221653/46221653 [00:01<00:00, 40386000.42it/s]\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting datasets/fgnet/fgnet.zip to datasets/fgnet\n"
]
}
],
"outputs": [],
"source": [
"fgnet = FGNet(root=\"./datasets/fgnet\", download=True, process_data=True)\n",
"\n",
Expand Down

0 comments on commit 0c5a722

Please sign in to comment.