-
Hello, I'm trying to write pytorch backbones for some of the MobileDet models (https://arxiv.org/abs/2004.14525). As discussed here, a lot of the important components of these models are already implemented in efficientnet_blocks.py. Am I allowed to use these blocks in my code and publish the models as a repository? If so, what is the correct way to give credit/ acknowledge that I used code from this library? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@novice03 Yes, code here is apache 2.0 license so you can use for whatever purpose. The only major downstream requirements for apache 2.0 are attribution (often just a reproduction of original copyright line, I usually include a link back to the original / author name). The official licence mentions doing this in a central NOTICE file, but I often do (and see) it inline with relevant code in docstrings/comments, etc. And don't remove/modify original copyrights, you can add your own on top. |
Beta Was this translation helpful? Give feedback.
@novice03 Yes, code here is apache 2.0 license so you can use for whatever purpose. The only major downstream requirements for apache 2.0 are attribution (often just a reproduction of original copyright line, I usually include a link back to the original / author name). The official licence mentions doing this in a central NOTICE file, but I often do (and see) it inline with relevant code in docstrings/comments, etc. And don't remove/modify original copyrights, you can add your own on top.