-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
65 lines (60 loc) · 1.5 KB
/
setup.cfg
File metadata and controls
65 lines (60 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- coding: utf-8 -*-
[metadata]
author = Etienne Labbé (Labbeti)
author_email = labbeti.pub@gmail.com
classifiers =
Intended Audience :: Science/Research
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
description = Deep Semi-Supervised Learning for audio tagging.
long_description = file: README.md
long_description_content_type = text/markdown
name = sslh
url = https://github.com/Labbeti/SSLH
version = attr: sslh.__version__
[options]
packages=find:
package_dir=
=src
python_requires = >= 3.9
install_requires =
torch==1.7.1
torchaudio==0.7.2
torchvision==0.8.2
pytorch-lightning==1.2.10
tensorboard==2.9.0
matplotlib==3.5.2
numpy==1.22.4
librosa==0.9.1
h5py==3.6.0
pandas==1.4.2
tqdm==4.64.0
black==21.12b0
click==8.0.4
pyyaml==6.0
soundfile==0.10.3.post1
advertorch==0.2.3
hydra-core==1.1.2
hydra-colorlog==1.2.0
[options.extras_require]
dev =
pytest
flake8
black
ipython
ipykernel
iprogress
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
dct = sslh.deep_co_training:main_deep_co_training
fm = sslh.fixmatch:main_fixmatch
mt = sslh.mean_teacher:main_mean_teacher
mm = sslh.mixmatch:main_mixmatch
mu = sslh.mixup:main_mixup
pl = sslh.pseudo_labeling:main_pseudo_labeling
rmm = sslh.remixmatch:main_remixmatch
sup = sslh.supervised:main_supervised
uda = sslh.uda:main_uda