I hereby claim:
- I am andrewschreiber on github.
- I am andrewschreiber (https://keybase.io/andrewschreiber) on keybase.
- I have a public key whose fingerprint is B124 EC8F E431 5EC0 7D0C 6205 2824 08D7 8326 AB72
To claim this, I am signing this object:
| // | |
| // WhereAmIAppDelegate.h | |
| // Whereami | |
| // | |
| // Created by Andrew Schreiber on 9/25/13. | |
| // Copyright (c) 2013 Andrew Schreiber. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
| // | |
| // WhereAmIAppDelegate.h | |
| // Whereami | |
| // | |
| // Created by Andrew Schreiber on 9/25/13. | |
| // Copyright (c) 2013 Andrew Schreiber. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
| #import <UIKit/UIKit.h> | |
| @interface RASecondViewController : UIViewController | |
| @property (retain, nonatomic) IBOutlet UIDatePicker *datePicker; | |
| @property (strong,nonatomic) IBOutlet UIButton *firstPictureButton; | |
| @property (strong,nonatomic) IBOutlet UIButton *secondPictureButton; |
| // | |
| // RAFirstViewController.m | |
| // Rally | |
| // | |
| // Created by Andrew Schreiber on 9/27/13. | |
| // Copyright (c) 2013 Andrew Schreiber. All rights reserved. | |
| // | |
| #import "RAFirstViewController.h" | |
| #import "RASecondViewController.h" |
| // | |
| // RAAdLib.h | |
| // Rally | |
| // | |
| // Created by Andrew Schreiber on 10/12/13. | |
| // Copyright (c) 2013 Andrew Schreiber. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| #import "RAAppDelegate.h" |
| { | |
| "name": "ReactiveCocoa", | |
| "version": "4.2.2", | |
| "summary": "A framework for composing and transforming streams of values.", | |
| "description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming.\nIt provides APIs for composing and transforming streams of values.", | |
| "homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa", | |
| "license": { | |
| "type": "MIT", | |
| "file": "LICENSE.md" | |
| }, |
| #!/bin/sh | |
| # See video https://www.youtube.com/watch?v=7PO27i2lEOs | |
| set -e | |
| command_exists () { | |
| type "$1" &> /dev/null ; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| # From CLI: | |
| # hyperdash run -n 'mymodel' python mymodel.py | |
| import hyperdash as hd | |
| learning_rate = hd.param('learning rate', default=0.01) # Setup hyperparameters | |
| # Model code here | |
| hd.metric('loss', training_loss) # Record a metric | |
| # Params and metrics are pretty printed at end of experiment | |