-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
65 additions
and
41 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#Speaker: Ryan Benz | ||
# Tibbles, and list columns, and nested data frames, oh my! | ||
|
||
##Title: Tibbles, and list columns, and nested data frames, oh my! | ||
* 2019-01-29 | ||
* Speaker: Ryan Benz | ||
|
||
###Abstract | ||
Tibbles are a "modern reimagining of the data.frame" and are a big part of the tidyverse, but what are they really, how are they different from standard data frames, any why should you care about using them? In this talk, I'll dive into tibbles and show how they can be used in several interesting ways taking advantage of list columns and nested data frames. Regardless of what you use R for, learning to harness the power of the tibble is an essential part of doing effective data analysis in the tidyverse. | ||
## Abstract | ||
Tibbles are a "modern reimagining of the data.frame" and are a big part of the tidyverse, but what are they really, how are they different from standard data frames, any why should you care about using them? In this talk, I'll dive into tibbles and show how they can be used in several interesting ways taking advantage of list columns and nested data frames. Regardless of what you use R for, learning to harness the power of the tibble is an essential part of doing effective data analysis in the tidyverse. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#Speaker: Emil Hansen | ||
# Working with tidymodels | ||
|
||
##Title: Working with tidymodels | ||
* 2019-01-29 | ||
* Speaker: Emil Hansen | ||
|
||
###Abstract | ||
|
||
## Abstract | ||
Tidymodels is a “meta-package” in the same way as tidyverse, but with a focus on modeling and statistical analysis. This talk will go through how to use tidymodels to do modeling in a tidy fashion. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#Speaker: Yemi Odeyemi | ||
# Opinion Mining of Climate Change Research | ||
|
||
##Title: Opinion Mining of Climate Change Research | ||
* 2019-02-26 | ||
* Speaker: Yemi Odeyemi | ||
|
||
###Abstract | ||
Climate is defined as the long-term impact of weather on a specific locality. Statistically, climate is defined as the average weather for a specific area over a defined period, usually over three to four decades. Over the years we have seen the socioeconomic impacts of climate change on public health, agriculture/nutrition, nutrient cycle, migration, local economy. In recent times, there has been a huge debate on the polarity of climate change impact, with energy companies arguing against the impact of climate change while the government regulators arguing for. In this study we assessed the sentiments/opinions of general discourse of NSF funded climate change research to ascertain if funding source influences the outcome of the research. | ||
## Abstract | ||
Climate is defined as the long-term impact of weather on a specific locality. Statistically, climate is defined as the average weather for a specific area over a defined period, usually over three to four decades. Over the years we have seen the socioeconomic impacts of climate change on public health, agriculture/nutrition, nutrient cycle, migration, local economy. In recent times, there has been a huge debate on the polarity of climate change impact, with energy companies arguing against the impact of climate change while the government regulators arguing for. In this study we assessed the sentiments/opinions of general discourse of NSF funded climate change research to ascertain if funding source influences the outcome of the research. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#Speaker: Ash Pahwa | ||
# Deep Learning using R and TensorFlow (Part 1) | ||
|
||
##Title: Deep Learning using R and TensorFlow (Part 1) | ||
* 2019-03-26 | ||
* Speaker: Ash Pahwa | ||
|
||
###Abstract: | ||
## Abstract: | ||
Google released TensorFlow software in 2015 targeted for the Deep Learning applications. Two primary misconceptions about TensorFlow are as follows. First, it can only be used with Python and second, it can only be used for building deep learning applications | ||
|
||
This talk will demystify these concepts. First, TensorFlow can also be used with R and any programming language. Second, TensorFlow’s main objective is to solve the mathematical problem (including differential equations) which contains multi-dimensional arrays (or tensors). Deep Learning Neural Networks is just another application of TensorFlow. | ||
|
||
In this first part, the fundamental architecture of TensorFlow will be covered. TensorFlow works on the concept of DAG (Directed Acyclic Graph). First, a DAG of the mathematical problem is built, and then the DAG is executed in the most efficient way using CPU, GPU or TPUs. The interface between R and TensorFlow will be discussed by building Neural Networks using R and TensorFlow. | ||
In this first part, the fundamental architecture of TensorFlow will be covered. TensorFlow works on the concept of DAG (Directed Acyclic Graph). First, a DAG of the mathematical problem is built, and then the DAG is executed in the most efficient way using CPU, GPU or TPUs. The interface between R and TensorFlow will be discussed by building Neural Networks using R and TensorFlow. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
#Speaker: Ash Pahwa | ||
# Deep Learning using R and TensorFlow (Part 2) | ||
|
||
##Title: Deep Learning using R and TensorFlow (Part 2) | ||
* 2019-04-29 | ||
* Speaker: Ash Pahwa | ||
|
||
###Abstract: | ||
## Abstract: | ||
Google released TensorFlow software in 2015 targeted for the Deep Learning applications. Two primary misconceptions about TensorFlow are as follows. First, it can only be used with Python and second, it can only be used for building deep learning applications | ||
|
||
This talk will demystify these concepts. First, TensorFlow can also be used with R and any programming language. Second, TensorFlow’s main objective is to solve the mathematical problem (including differential equations) which contains multi-dimensional arrays (or tensors). Deep Learning Neural Networks is just another application of TensorFlow. | ||
|
||
In this second part, neural networks optimization techniques will be discussed. The implementation of Gradient Descent and Adam (Adaptive Momentum Estimation) optimization techniques will be covered using R and TensorFlow. | ||
In this second part, neural networks optimization techniques will be discussed. The implementation of Gradient Descent and Adam (Adaptive Momentum Estimation) optimization techniques will be covered using R and TensorFlow. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Best Visualization Award | ||
# OCRUG 2019 Hackathon | ||
## Best Visualization Award | ||
|
||
## Team Name: Captain Rrrr | ||
* 2019-05-28 | ||
* Team Name: Captain Rrrr | ||
* Team Members: Carey Huh, Crystal Yang, Dhruba Banerjee, Divya Swaminathan, Grace Gupta | ||
|
||
### Team Members: Carey Huh, Crystal Yang, Dhruba Banerjee, Divya Swaminathan, Grace Gupta | ||
## Abstract | ||
|
||
- Investigated the relationship between population size and water depletion | ||
- Found a sharper gradient (faster groundwater depletion) in agricultural vs. urban counties | ||
- Orange County showed an opposite relationship to nearby large urban counties that could not be explained | ||
- Water levels are highly correlated with drought severity | ||
- Built a decision tree model to predict whether water level in 2019 is higher/lower compared to 2014 | ||
- Built a decision tree model to predict whether water level in 2019 is higher/lower compared to 2014 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Best Model Award | ||
# OCRUG 2019 Hackathon | ||
## Best Model Award | ||
|
||
## Team Name: Save The WoRld | ||
* 2019-05-28 | ||
* Team Name: Save The WoRld | ||
* Team Members: Faizanul Syed Haque, Gregory Faletto, Javier Orraca, Sam Park, Shruhi Desai | ||
|
||
### Team Members: Faizanul Syed Haque, Gregory Faletto, Javier Orraca, Sam Park, Shruhi Desai | ||
## Abstract | ||
|
||
- Modelled the proportion of residents in fair/poor health in a county based on the contaminant levels and standard demographic controls | ||
- Investigated both ordinary least squares regression and generalized additive models | ||
- Arsenic appears to have a nonlinear effect not picked up by ordinary least squares | ||
- Started to look at how contaminants affect birth rates | ||
- Found a general decline in health (across multiple measures) in California since 2010 | ||
- Found a general decline in health (across multiple measures) in California since 2010 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#Speaker: Samira Kumar Vardharajan, Brandon Nguyen, Shruhi Desai, Qinyu Xi, Xinfang Zhang | ||
# UCI MSBA Capstone Project | ||
## Amazon Alexa Skill Store | ||
|
||
##Title: Amazon Alexa Skill Store | ||
* 2019-06-25 | ||
* Speaker: Samira Kumar Vardharajan, Brandon Nguyen, Shruhi Desai, Qinyu Xi, Xinfang Zhang | ||
|
||
###Abstract | ||
Using effectively the skill intent model (a description of a third party application), including but not limited to, description, sample utterances, keywords, maturity rating, etc. we try to classify Alexa skills into one of 20 categories. Creating features with text data has a two-fold approach. The first is to use frequency of words to give words to each word occurring in the skill-intent model and use this matrix to predict the category as a supervised classification problem. The second is to use the semantic meaning, that is similarity of words, defined by cosine similarity. To overcome the big challenge of overlapping categories, we use a probabilistic approach to categorization. | ||
## Abstract | ||
Using effectively the skill intent model (a description of a third party application), including but not limited to, description, sample utterances, keywords, maturity rating, etc. we try to classify Alexa skills into one of 20 categories. Creating features with text data has a two-fold approach. The first is to use frequency of words to give words to each word occurring in the skill-intent model and use this matrix to predict the category as a supervised classification problem. The second is to use the semantic meaning, that is similarity of words, defined by cosine similarity. To overcome the big challenge of overlapping categories, we use a probabilistic approach to categorization. |
10 changes: 6 additions & 4 deletions
10
2019-06-25_Pacific_Life_Predicincting_Policyholder_Lapse_Behavior/README.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#Speaker: Daniel Lee, Irene Yang, Pablo Barajas, Mason Hansen, Abhinav Kashyap | ||
# UCI MSBA Capstone Project | ||
# Pacific Life: Predicting polcyholder lapse behavior | ||
|
||
##Title: Pacific Life: Predicting polcyholder lapse behavior | ||
* 2019-06-25 | ||
* Speaker: Daniel Lee, Irene Yang, Pablo Barajas, Mason Hansen, Abhinav Kashyap | ||
|
||
###Abstract | ||
Applying the principles of Statistics and Machine Learning to predict policyholder lapse rate for Variable Annuities. In addition, we gained insight into the underlying dynamics of policyholder lapse behavior. | ||
## Abstract | ||
Applying the principles of Statistics and Machine Learning to predict policyholder lapse rate for Variable Annuities. In addition, we gained insight into the underlying dynamics of policyholder lapse behavior. |