npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dr-auto-submit

v1.4.6

Published

A auto submission tool to help with Deep Racer league

Downloads

8

Readme

dr-auto-submit

A node based DeepRacer league submitter, this will help you submit your model automatically every 10 seconds

Usage

Running with Docker is the recommended approach

docker run --rm -it dungviettran89/dr-auto-submit -a <accountId> -u <username> -p <password> -s <model1>:<raceHash1> -s <model2>:<raceHash2>

To run as a cli, please install Node and Chrome/Chromium then run

npx dr-auto-submit -a <accountId> -u <username> -p <password> -s <model1>:<raceHash1> -s <model2>:<raceHash2>

If the script cannot detect chrome version, please specify Chrome binary location using -e parameter.

npx dr-auto-submit -a <accountId> -u <username> -p <password> -e <chrome> -s <model1>:<raceHash1> -s <model2>:<raceHash2>

All the possible parameter can be found below

$npx dr-auto-submit -h
npx: installed 56 in 5.137s
Usage: dr-auto-submit -a <accountId> -u <username> -p <password> -s <mode1l>:<raceHash1> -s <model2>:<raceHash2>

Options:
  -a, --account <accountId>        Account Id to use for autosubmission. Sample: -a 6817631413
  -u, --username <username>        Username used for submission. Sample: -u Aihsadhahl
  -p, --password <password>        Password used to login to console. Sample: -p iuasdadgad12
  -s, --submit <model>:<raceHash>  Model and race to submit to, you can provide multiple submissions. -s
                                   awesome-model:races/arn%3Aaws%3Adeepracer%3A%3A%3Aleaderboard%2F55234c74-2c48-466d-9e66-242ddf05e04d (default: [])
  -e, --executable                 Location of your chrome binary file. Default /usr/bin/chromium-browser
  -d, --debug                      Enable debug
  --no-headless                    Disable headless mode
  -h, --help                       Read more information

Guide

  1. Obtain valid a sub account with all Deep Racer permission. Follow instruction here to create a sub account. A valid account will consist of 3 information: account id, username and password.
  2. Train and make sure your model is in valid state to submit.
  3. Open your league leader board and copy race hash. https://console.aws.amazon.com/deepracer/home?region=us-east-1#league/arn%3Aaws%3Adeepracer%3A%3A%3Aleaderboard%2F55234c74-2c48-466d-9e66-242ddf05e04d will have hash: league/arn%3Aaws%3Adeepracer%3A%3A%3Aleaderboard%2F55234c74-2c48-466d-9e66-242ddf05e04d
  4. Make sure Chrome and Node are installed in your system.
  5. Execute commandline npx dr-auto-submit -a 123411231 -u Daf123AD -p asdasd12131das -s my-model:league/arn%3Aaws%3Adeepracer%3A%3A%3Aleaderboard%2F55234c74-2c48-466d-9e66-242ddf05e04d

Installation and run on a Ubuntu Server

Install Chromium

apt-get update && apt-get install -y chromium-browser

Install NodeJS on your server following instruction

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

Start submission

npx dr-auto-submit -a <account> -u <username> -p <password> -s <model1>:<raceHash1> -s <model2>:<raceHash2>

Advance usage with Docker

This script can be used quickly to spin up a docker container in background to auto submit your model.

#!/bin/bash
docker rm -f dr-auto-submit
docker run -id --restart=always --name dr-auto-submit dungviettran89/dr-auto-submit -a 1 -u 2 -p 3 -s 4:5 -s 6:7
timeout --foreground 1m docker logs -f dr-auto-submit