homa 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of homa might be problematic. Click here for more details.

Files changed (59) hide show
  1. {homa-0.1.1 → homa-0.1.2}/PKG-INFO +1 -1
  2. {homa-0.1.1 → homa-0.1.2}/pyproject.toml +1 -1
  3. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/concerns/Trainable.py +1 -1
  4. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/PKG-INFO +1 -1
  5. {homa-0.1.1 → homa-0.1.2}/README.md +0 -0
  6. {homa-0.1.1 → homa-0.1.2}/setup.cfg +0 -0
  7. {homa-0.1.1 → homa-0.1.2}/src/homa/__init__.py +0 -0
  8. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/__init__.py +0 -0
  9. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/APLU.py +0 -0
  10. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/GALU.py +0 -0
  11. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/MELU.py +0 -0
  12. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/PDELU.py +0 -0
  13. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/SReLU.py +0 -0
  14. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/SmallGALU.py +0 -0
  15. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/StochasticActivation.py +0 -0
  16. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/WideMELU.py +0 -0
  17. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/classes/__init__.py +0 -0
  18. {homa-0.1.1 → homa-0.1.2}/src/homa/activations/utils.py +0 -0
  19. {homa-0.1.1 → homa-0.1.2}/src/homa/cli/HomaCommand.py +0 -0
  20. {homa-0.1.1 → homa-0.1.2}/src/homa/cli/namespaces/CacheNamespace.py +0 -0
  21. {homa-0.1.1 → homa-0.1.2}/src/homa/cli/namespaces/MakeNamespace.py +0 -0
  22. {homa-0.1.1 → homa-0.1.2}/src/homa/cli/namespaces/__init__.py +0 -0
  23. {homa-0.1.1 → homa-0.1.2}/src/homa/device.py +0 -0
  24. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/Ensemble.py +0 -0
  25. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/__init__.py +0 -0
  26. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/CalculatesMetricNecessities.py +0 -0
  27. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/HasNetwork.py +0 -0
  28. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/HasStateDicts.py +0 -0
  29. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/PredictsProbabilities.py +0 -0
  30. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/RecordsStateDictionaries.py +0 -0
  31. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsClassificationMetrics.py +0 -0
  32. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsEnsembleAccuracy.py +0 -0
  33. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsEnsembleF1.py +0 -0
  34. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsEnsembleKappa.py +0 -0
  35. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsLogits.py +0 -0
  36. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/ReportsSize.py +0 -0
  37. {homa-0.1.1 → homa-0.1.2}/src/homa/ensemble/concerns/__init__.py +0 -0
  38. {homa-0.1.1 → homa-0.1.2}/src/homa/settings.py +0 -0
  39. {homa-0.1.1 → homa-0.1.2}/src/homa/torch/Module.py +0 -0
  40. {homa-0.1.1 → homa-0.1.2}/src/homa/torch/__init__.py +0 -0
  41. {homa-0.1.1 → homa-0.1.2}/src/homa/torch/helpers.py +0 -0
  42. {homa-0.1.1 → homa-0.1.2}/src/homa/utils.py +0 -0
  43. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/Model.py +0 -0
  44. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/Resnet.py +0 -0
  45. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/StochasticResnet.py +0 -0
  46. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/__init__.py +0 -0
  47. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/concerns/__init__.py +0 -0
  48. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/modules/ResnetModule.py +0 -0
  49. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/modules/StochasticResnetModule.py +0 -0
  50. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/modules/__init__.py +0 -0
  51. {homa-0.1.1 → homa-0.1.2}/src/homa/vision/utils.py +0 -0
  52. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/SOURCES.txt +0 -0
  53. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/dependency_links.txt +0 -0
  54. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/entry_points.txt +0 -0
  55. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/requires.txt +0 -0
  56. {homa-0.1.1 → homa-0.1.2}/src/homa.egg-info/top_level.txt +0 -0
  57. {homa-0.1.1 → homa-0.1.2}/tests/test_ensemble.py +0 -0
  58. {homa-0.1.1 → homa-0.1.2}/tests/test_resnet.py +0 -0
  59. {homa-0.1.1 → homa-0.1.2}/tests/test_stochastic_resnet.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homa
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A curated list of machine learning and deep learning helpers.
5
5
  Author-email: Taha Shieenavaz <tahashieenavaz@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "homa"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A curated list of machine learning and deep learning helpers."
9
9
  authors = [
10
10
  { name="Taha Shieenavaz", email="tahashieenavaz@gmail.com" },
@@ -16,7 +16,7 @@ class Trainable:
16
16
  def train_tensors(self, x: Tensor, y: Tensor):
17
17
  self.network.train()
18
18
  self.optimizer.zero_grad()
19
- loss = self.criterion(y, self.network(x).float())
19
+ loss = self.criterion(self.network(x).float(), y)
20
20
  loss.backward()
21
21
  self.optimizer.step()
22
22
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homa
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A curated list of machine learning and deep learning helpers.
5
5
  Author-email: Taha Shieenavaz <tahashieenavaz@gmail.com>
6
6
  Requires-Python: >=3.7
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes