Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] - fix(test): fix test workflow #72

Merged
merged 6 commits into from
Nov 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[bert_squeeze/data] - refactor: remove ConferenceDataset module and r…
…eferences

 - Deleted the ConferenceDataset class to streamline local_datasets
 - Removed ConferenceDataset import from the __init__.py to clean up package initialization

[docs] - docs: update data documentation to reflect removed ConferenceDataset

 - Removed reference to ConferenceDataset in the data.rst docs to keep documentation accurate
  • Loading branch information
JulesBelveze committed Nov 9, 2024
commit 84f7648863d070044a372be5d2c335de1b0f23e7
1 change: 0 additions & 1 deletion bert_squeeze/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
from .local_datasets import ConferenceDataset, DatasetUnlabeled
from .modules import DistillationDataModule, LrDataModule, TransformerDataModule
1 change: 0 additions & 1 deletion bert_squeeze/data/local_datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
from .conference_dataset import ConferenceDataset
from .unlabeled_dataset import DatasetUnlabeled
80 changes: 0 additions & 80 deletions bert_squeeze/data/local_datasets/conference_dataset.py

This file was deleted.

4 changes: 0 additions & 4 deletions docs/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ Data
bert_squeeze.data.local_datasets
----------------------------------

.. automodule:: bert_squeeze.data.local_datasets.conference_dataset
:members:
:exclude-members: ConferenceConfig

.. automodule:: bert_squeeze.data.local_datasets.parallel_dataset
:members:
:exclude-members: ParallelConfig
Expand Down
Loading