Metadata-Version: 2.1
Name: jax-fcpe
Version: 0.0.4
Summary: JAX Implementation FCPE
Home-page: https://github.com/flyingblackshark/jax-fcpe
Author: flyingblackshark
Author-email: flyingblackshark <aliu2000@outlook.com>
Project-URL: Homepage, https://github.com/flyingblackshark/jax-fcpe
Project-URL: Issues, https://github.com/flyingblackshark/jax-fcpe/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: jax>=0.2.16
Requires-Dist: flax
Requires-Dist: audax
Requires-Dist: torch


# FCPE jax version 
## This version is working perfectly fine. 😀 
### Original https://github.com/CNChTu/FCPE

# Example
```Python
import jax_fcpe
import jax.numpy as jnp

a = jnp.ones((16000))
f0 = jax_fcpe.get_f0(a,16000)
print(f0)
