Skip to content

Commit

Permalink
Merge pull request #1079 from python-discord/cj10-frameworks-update
Browse files Browse the repository at this point in the history
Add additional approved frameworks for CJ10
  • Loading branch information
jchristgit authored Aug 28, 2023
2 parents 9528b2b + 36051f3 commit f684cd7
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pydis_site/templates/events/pages/code-jams/10/frameworks.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,51 @@ <h3 id="approved-frameworks"><a href="#approved-frameworks">Approved Frameworks<
</div>
</div>

<div class="card mb-4">
<div class="card-content">
<div class="content">
<p class="subtitle">ffmpeg-python</p>
<p>
A Python wrapper for the powerful FFmpeg software.
</p>
<p>
⚠ You can use other ffmpeg Python bindings, but both with this one and others, make sure that it works well with newer Python versions and be mindful of issues reported in their repositories.
</p>
</div>
</div>
<div class="card-footer">
<a href="https://kkroening.github.io/ffmpeg-python/" class="card-footer-item"><i class="fas fa-book"></i>&ensp;Documentation</a>
<a href="https://github.com/kkroening/ffmpeg-python" class="card-footer-item"><i class="fab fa-github"></i>&ensp;GitHub</a>
</div>
</div>

<div class="card mb-4">
<div class="card-content">
<div class="content">
<p class="subtitle">imageio</p>
<p>
Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, video, volumetric data, and scientific formats.
It is cross-platform, runs on Python 3.8+, and is easy to install.
</p>
</div>
</div>
<div class="card-footer">
<a href="https://imageio.readthedocs.io/en/stable/" class="card-footer-item"><i class="fas fa-book"></i>&ensp;Documentation</a>
<a href="https://github.com/imageio/imageio" class="card-footer-item"><i class="fab fa-github"></i>&ensp;GitHub</a>
</div>
</div>

<h4 id="can-i-use-ml"><a href="#can-i-use-ml">Q: Can I use machine learning libraries?</a></h4>
<p>
A: Yes, you can use libraries such as scikit-learn, PyTorch, TensorFlow, etc.
<b>However</b>:
</p>
<ol type="1">
<li>Your project should be easy to install and run, so it can't require a dedicated GPU or otherwise significant computational resources.</li>
<li>This might prove to be a barrier for your teammates to contribute to the project if they're not knowledgeable in the field.</li>
<li>We would still like to see more "classical" image processing techniques. This isn't an ML code jam.</li>
<li>If you use pretrained models you need to specify where you took them from, and they need to be compatible with the project license.</li>
</ol>

{% endblock %}

Expand Down

0 comments on commit f684cd7

Please sign in to comment.