Skip to content
View kevashcraft's full-sized avatar
Block or Report

Block or report kevashcraft

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. EagleLogger EagleLogger Public

    Amateur radio net logging application. Multi-platform, containerized.

    Vue

  2. Flash-Spanish Flash-Spanish Public

    Flash! Spanish Tap and Learn - https://flash-spanish.kevapps.com

    JavaScript

  3. KM4FPA.com KM4FPA.com Public

    The amateur radio website for KM4FPA. Built with Jekyll.

    CSS 1

  4. learn-hangul learn-hangul Public

    HTML

  5. Writing a TFRecord File Writing a TFRecord File
    1
    with tf.io.TFRecordWriter('examples.tfrecord') as training_file:
    2
        for features, label in batch:
    3
            features = {
    4
                'label': tf.train.Feature(int64_list=tf.train.Int64List(value=[label])),
    5
                'features': tf.train.Feature(float_list=tf.train.FloatList(value=features)) # expects list, so if numpy use .tolist() and ensure it's 1-D