Downloads · 30 days
0
rsmillie94/task-18-multi-dynamic
task-18-multi-dynamic is a reinforcement learning model from rsmillie94. Use it for the reinforcement learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
This is a neural network model trained for the Flock.io Task 18 - Dark Pool Trading.
Downloads · 30 days
0
Access
Public
Updated Dec 21, 2025
Repo size
170 KB
Likes
0
Public
Click a slice to open those files.
.onnx97.8 KB · 57%
From the Hugging Face model README
This is a neural network model trained for the Flock.io Task 18 - Dark Pool Trading.
Multi-Layer Perceptron (MLP):
import onnxruntime as ort
import numpy as np
# Load the model
session = ort.InferenceSession("model.onnx")
# Prepare input (34 features)
input_data = np.random.randn(1, 34).astype(np.float32)
# Run inference
outputs = session.run(None, {"input": input_data})
prediction = outputs[0]
print(f"Prediction: {prediction}")
Trained on Flock.io Task 18 dataset:
Apache 2.0