Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add supported frameworks to readme #28808

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ Ivy is an open-source machine learning framework that enables you to:

- Convert ML models, tools and libraries between frameworks while maintaining complete functionality using `ivy.transpile`
- Create optimized graph-based models and functions in any native framework (PyTorch, TensorFlow, etc..) with `ivy.trace_graph`
- Use your ML models or functions in any framework using a graph-tracing approach with `ivy.graph_transpile` *(deprecated)*

<div style="display: block;" align="center">
<div>
Expand Down Expand Up @@ -132,6 +131,20 @@ tutorials to do so are available!

<br>

# Supported Frameworks

These are the frameworks that `ivy.transpile` currently supports conversions from and to.
We're working hard on adding support for more frameworks, let us know on [Discord](https://discord.gg/uYRmyPxMQq) if there are source/target frameworks that would be useful for you!

| Framework | Source | Target |
|------------|:------:|:------:|
| PyTorch | ✅ | 🚧 |
| TensorFlow | 🚧 | ✅ |
| JAX | 🚧 | 🚧 |
| NumPy | 🚧 | 🚧 |

<br>

# Getting started

- [Docs](https://ivy.dev/docs)
Expand Down
2 changes: 1 addition & 1 deletion docs/overview/design/ivy_as_a_transpiler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Here, we explain the Ivy's source-to-source transpiler and computational graph t
+-------------+-+--------+--------+
| TensorFlow | | 🚧 | ✅ |
+-------------+-+--------+--------+
| JAX | | 🚧 | |
| JAX | | 🚧 | 🚧 |
+-------------+-+--------+--------+
| NumPy | | 🚧 | 🚧 |
+-------------+-+--------+--------+
Expand Down
Loading