numpy 1.24.1 pypi_0 pypi openpyxl 3.1.2 pypi_0 pypi openssl 1.1.1t h7f8727e_0 defaults orjson 3.8.12 pypi_0 pypi packaging 23.1 pypi_0 pypi pandas 2.0.1 pypi_0 pypi pandocfilters 1.5.0 pypi_0 pypi parso 0.8.3 pypi_0 pypi ...
Description import jax.numpy as jnp import jax import flax.linen as nn from collections.abc import Callable import time class rbfnet(nn.Module): pointnums: int = 100 areafun: Callable = nn.silu init_value: jax.Array = jnp.ones((100, 3)) ...
GitPython==3.1.32 Pillow==9.5.0 accelerate==0.21.0 basicsr==1.4.2 blendmodes==2022 clean-fid==0.1.35 einops==0.4.1 fastapi==0.94.0 gfpgan==1.3.8 gradio==3.41.2 httpx==0.24.1 httpcore==0.15 inflection==0.5.1 jsonmerge==1.8.0 kornia==0.6.7 lark==1.1.2 numpy==1.23.5 omegacon...
(1,activation='sigmoid')(x)model=tf.keras.Model(i,o)model.compile('adam','mae')defgen():foriinitertools.count(1):yield[float(i)], [float(i)]ds=tf.data.Dataset.from_generator(gen, (tf.float32,tf.float32), (tf.TensorShape([1]),tf.TensorShape([1])))model.fit(ds,steps_per_...
coming from the need to use TimeSeriesSplit to create X_train, X_test, y_train, and y_test (I'm working with time series data, which is why I can't use train_test_split, and TimeSeriesSplit doesn't work when X is a pandas dataframe so I need to turn it into a numpy array)...