Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fpaissan authored Nov 28, 2023
2 parents 9725fdf + d3f9119 commit afbed63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sphinx
sphinx_rtd_theme
12 changes: 0 additions & 12 deletions micromind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,3 @@

# Package version
__version__ = "0.1.1"

"""datasets_info is a dictionary that contains information about the attributes
of the datasets.
This dictionary is used in networks.py inside the from_pretrained class method
in order to examine the inputs and initialize the PhiNet or, in case of
mismatching between dataset and Nclasses, raise an AssertionError."""
datasets_info = {
"CIFAR-100": {"Nclasses": 100, "NChannels": 3, "ext": ".pth.tar"},
"CIFAR-10": {"Nclasses": 10, "NChannels": 3, "ext": ".pth.tar"},
"ImageNet-1k": {"Nclasses": 1000, "NChannels": 3, "ext": ".pth.tar"},
"MNIST": {"Nclasses": 10, "NChannels": 1, "ext": ".pth.tar"},
}

0 comments on commit afbed63

Please sign in to comment.