-
The author assumes that the C-note is currently only jazz club (proposed) under construction or proposed.
-
The author is also assuming that people in Monroe are unwilling to drive 65 miles to go to the "nearest" jazz club.
-
The author is assuming that the majority of these 100,000 people are people who actually live in Monroe.
-
The author is assuming that people attend the jazz festival because they're jazz fans.
-
The author is assuming that this annual jazz festival is gonna be popular every year subsequently.
View in_order.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node: | |
def __init__(self, val): | |
self.val = val | |
self.parent = None | |
self.left = None | |
self.right = None | |
a = Node(12) | |
b = Node(6) | |
c = Node(5) |
View AnalyticalReasoning.md
View dense.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View regularization_techniques.md
regularization
Any modification we make to a learning algorithm that is intended to reduce its generalization error but not its training error
To some extent, we are trying to fit a square peg (the data-generating process) into a round hole (our model family)
Strategies to create such a large, deep regularized model
Parameter Norm Penalties
L-squared Parameter Regularization
View docker_image.dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
LABEL maintainer="ehzawad@gmail.com" | |
ARG DEBIAN_FRONTEND=noninteractive | |
# ARG VCS_REF | |
# Avoid "delaying package configuration, since apt-utils is not installed" | |
RUN apt update && apt install --yes apt-utils | |
View c_in_out.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) | |
{ | |
int is_ok = EXIT_FAILURE; | |
const char* fname = "/tmp/unique_name.txt"; // or tmpnam(NULL); | |
FILE* fp = fopen(fname, "w+"); | |
if(!fp) { | |
perror("File opening failed"); |
View gregmat3132.md
Group 31
-
crescendo - peak
-
apprise - inform or tell (someone)
-
extenuating - (of a factor or situation) serving to lesson the seriousness of an offense
-
shirk - avoid or neglect (a duty or responsibility)
View HPFFP.md
HASKELL PROGRAMMING FROM FIRST PRINCIPLES
CHAPTER1. ALL YOU NEED IS LAMBDA
1.1 All You Need is Lambda
lambda calculus:
computation model, 1930s, Alonzo Church, formalizing a method, Turing machines
View all-algorithms.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View vectorize.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder