Skip to content

Commit 685697c

Browse files
authored
remove unused cv collection (#4907)
Signed-off-by: Oleksii Kuchaiev <[email protected]> Signed-off-by: Oleksii Kuchaiev <[email protected]>
1 parent b85fc77 commit 685697c

File tree

12 files changed

+1
-665
lines changed

12 files changed

+1
-665
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Your pull requests must pass all checks and peer-review before they can be merg
5151
* Abstract classes in the Model hierarchy have Model postfix
5252
* A config class for MyModel should be called MyModelConfig
5353
* Leaf Neural Module classes have simple names without any postfixes (e.g. AudioPreprocess)
54-
* Leaf Datasets have Dataset postfix (e.g. MNISTDataset)
54+
* Leaf Datasets have Dataset postfix (e.g. AudioToSpeechLabelDataset)
5555
* Leaf Losses have Loss postfix (e.g. CTCLoss)
5656
* Leaf Models do not have any postfix, just name (e.g. QuartzNet)
5757

Jenkinsfile

Lines changed: 0 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -212,65 +212,6 @@ pipeline {
212212
}
213213
}
214214

215-
stage('L0: Computer Vision Integration') {
216-
when {
217-
anyOf {
218-
branch 'main'
219-
changeRequest target: 'main'
220-
}
221-
}
222-
failFast true
223-
parallel {
224-
stage ('MNIST image classification with LeNet-5 Integration Test - on CPU') {
225-
steps {
226-
sh 'cd examples/cv && \
227-
python mnist_lenet5_image_classification_pure_lightning.py trainer.devices=1 \
228-
trainer.accelerator="cpu" \
229-
trainer.fast_dev_run=true model.dataset.data_folder=/home/TestData \
230-
&& rm -rf outputs'
231-
}
232-
}
233-
}
234-
}
235-
236-
// We have no integration tests, please enable this when one is added
237-
// stage('L0: Integration Tests GPU') {
238-
// steps {
239-
// sh 'pytest -s -m "integration and not skipduringci and not pleasefixme"'
240-
// }
241-
// }
242-
243-
// stage('L0: Integration Tests CPU') {
244-
// when {
245-
// anyOf{
246-
// branch 'main'
247-
// changeRequest target: 'main'
248-
// }
249-
// }
250-
// steps {
251-
// sh 'pytest -s -m "integration and not pleasefixme" --cpu'
252-
// }
253-
// }
254-
255-
// We have no system tests, please enable this when one is added
256-
// stage('L1: System Tests GPU') {
257-
// steps {
258-
// sh 'pytest -m "system and not skipduringci and not pleasefixme"'
259-
// }
260-
// }
261-
262-
// stage('L1: System Tests CPU') {
263-
// when {
264-
// anyOf{
265-
// branch 'dev
266-
// changeRequest target: 'main'
267-
// }
268-
// }
269-
// steps {
270-
// sh 'pytest -m "system and not pleasefixme" --cpu'
271-
// }
272-
// }
273-
274215
stage('L2: ASR dev run') {
275216
when {
276217
anyOf {

examples/cv/mnist_lenet5_image_classification_pure_lightning.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

nemo/collections/cv/__init__.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

nemo/collections/cv/datasets/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

nemo/collections/cv/datasets/mnist_dataset.py

Lines changed: 0 additions & 132 deletions
This file was deleted.

nemo/collections/cv/losses/__init__.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

nemo/collections/cv/losses/nll_loss.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)