Opentensor Miners
With ≥python3.8 installed:
python3 -m pip install -e .
import openminers
with openminers.TemplateMiner():
pass
# or
miner = openminers.TemplateMiner()
miner.run()
# or
miner = openminers.TemplateMiner()
miner.run_in_background_thread()
...
miner.stop_background_thread()
# Run 10 requests through the template miner
python3 benchmarks/base.py template 10
# Run 10 requests through the template miner with wandb logging
python3 benchmarks/base.py template 1000 --wandb.on
# Run 100 requests through the openai miner with api key
python3 benchmarks/base.py openai 100 --openai.api_key xxx...xx
Python
92.6%
Shell
7.4%
Opentensor Miners
With ≥python3.8 installed:
python3 -m pip install -e .
import openminers
with openminers.TemplateMiner():
pass
# or
miner = openminers.TemplateMiner()
miner.run()
# or
miner = openminers.TemplateMiner()
miner.run_in_background_thread()
...
miner.stop_background_thread()
# Run 10 requests through the template miner
python3 benchmarks/base.py template 10
# Run 10 requests through the template miner with wandb logging
python3 benchmarks/base.py template 1000 --wandb.on
# Run 100 requests through the openai miner with api key
python3 benchmarks/base.py openai 100 --openai.api_key xxx...xx
Python
92.6%
Shell
7.4%