caten2 / Tripods2021UA

MIT License
3 stars 5 forks source link

Better naming conventions: What is `operations.py`? #20

Closed caten2 closed 1 year ago

caten2 commented 1 year ago

The class Relation is defined in src/relations.py, so one would imagine that the class Operation would be defined in src/operations.py, but this is not the case. The current operations defined in src/operations.py are arithmetic operations use in more basic examples/testing for the discrete neural net setup, and these should be moved somewhere like src/arithmetic_operations.py. Meanwhile, src/operations.py should contain the Operation class.

caten2 commented 1 year ago

I think I'm going to make this change before I merge the path_architecture branch I've been working on.

caten2 commented 1 year ago

I made some name changes along these lines.