Add create_image.py
This commit is contained in:
parent
9f32be3bdf
commit
38ff7c8a74
|
@ -35,9 +35,9 @@ def mlflow_context():
|
|||
@given(
|
||||
data=st.data(),
|
||||
feature_size=st.integers(min_value=1, max_value=10),
|
||||
width=st.integers(min_value=MINIMUM_NETWORK_DIMENSION, max_value=20),
|
||||
height=st.integers(min_value=MINIMUM_NETWORK_DIMENSION, max_value=20),
|
||||
num_iterations=st.integers(min_value=10, max_value=50),
|
||||
width=st.integers(min_value=MINIMUM_NETWORK_DIMENSION, max_value=100),
|
||||
height=st.integers(min_value=MINIMUM_NETWORK_DIMENSION, max_value=100),
|
||||
num_iterations=st.integers(min_value=10, max_value=100),
|
||||
initial_learning_rate=st.floats(min_value=1e-3, max_value=1.0, allow_nan=False, allow_infinity=False)
|
||||
)
|
||||
@settings(max_examples=10, deadline=None, suppress_health_check=(HealthCheck.too_slow,))
|
||||
|
|
BIN
benchmarks/execution_time_comparison.png
Normal file
BIN
benchmarks/execution_time_comparison.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
13
create_image.py
Normal file
13
create_image.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
from models import train_kohonen_network, create_kohonen_params
|
||||
|
||||
X = np.random.random((1000,3))
|
||||
|
||||
IMAGE_SIZE = 10
|
||||
|
||||
params = create_kohonen_params(X, IMAGE_SIZE, IMAGE_SIZE, 1000).unwrap()
|
||||
image_data = train_kohonen_network(X, params, use_mlflow=True).unwrap()
|
||||
|
||||
plt.imsave(f'{IMAGE_SIZE}.png', image_data)
|
Loading…
Reference in New Issue
Block a user