Skip to content
This repository was archived by the owner on Jun 29, 2019. It is now read-only.

Commit 689b681

Browse files
committed
Create the hierarchical structure for this repository
1 parent b42c98d commit 689b681

File tree

19 files changed

+104
-0
lines changed

19 files changed

+104
-0
lines changed

Apps/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

CONTRIBUTING.MD

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Contributing to Azure-MachineLearning-DataScience
2+

Misc/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Algorithms/C#/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Algorithms/Misc/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Algorithms/Python/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Algorithms/R/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/DataProcessing/C#/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/DataProcessing/R/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Misc/C#/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Misc/Misc/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Misc/Python/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Modules/Misc/R/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Readme.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
This repository is designed to share custom modules, utility codes, applications, and other miscellaneous codes for Azure ML studio.
2+
Please check the hierarchical structure of this repository below and put your codes in proper place in the repository.
3+
4+
#Repository Structure
5+
```
6+
Repository
7+
|
8+
|--Modules // Things that can be installed in Studio – reserved for when we support custom modules in that language
9+
|--DataProcessing // Codes process the data in Studio, e.g., TFIDF, feature extraction, date conversion, risk tables
10+
|--Python
11+
|--C#
12+
|--R
13+
|--Misc
14+
|--Algorithms // Custom algorithms, i.e., Regularized Greedy Forest
15+
|--Python
16+
|--C#
17+
|--R
18+
|--Misc
19+
|--Misc // Miscellaneous codes, e.g., call out to data provider
20+
|--Python
21+
|--C#
22+
|--R
23+
|--Misc
24+
|--Utilities // Running outside of Studio, or inside module as script
25+
|--Python // Could be ipython notebook
26+
|--C# // Examples include codes to interact with AML APIs to copy workspaces
27+
|--R // R scripts inside ExecuteR, external scripts for data. For example codes to calculate performance metrics, produce graphs, etc.
28+
|--Misc
29+
|--Apps // Apps to drive/consume AzureML, e.g., web apps, mobile apps, Excel plugins.
30+
|--Visualization Tool // Tools/codes for visualization
31+
|-- Misc // For hard-to-classify items
32+
```
33+
34+

Utilities/C#/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

Utilities/Misc/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

VisualizationTools/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

0 commit comments

Comments
 (0)