filename
stringlengths
7
140
content
stringlengths
0
76.7M
guides/coding_style/elixir/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/coding_style/f#/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/coding_style/go/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Go Style Guide ([Source](https://github.com/golang/go/wiki/CodeReviewComments)) This page collects common comments made during reviews of Go code, so that a single detailed explanation can be referred to...
guides/coding_style/java/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Java Style Guide ## Index - [Braces](#braces) - [Comments](#comments) - [Control Flow Statements](#control-flow-statements) - [Whitespace](#whitespace) - [Naming](#naming) - [Methods](#methods) - [Express...
guides/coding_style/javascript/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Airbnb JavaScript Style Guide() { *A mostly reasonable approach to JavaScript* > **Note**: this guide assumes you are using [Babel](https://babeljs.io), and requires that you use [babel-preset-airbnb](ht...
guides/coding_style/kotlin/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Kotlin Style Guide ([Source](https://kotlinlang.org/docs/reference/)) ## Coding Conventions ## Index - [Naming Style](#naming-style) - [Colon](#colon) - [Lambdas](#lambdas) - [Class Header Formatting](#c...
guides/coding_style/lisp/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/coding_style/ml/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/coding_style/pascal/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/coding_style/perl/style.md
Perl Code Style Guidelines ```perl Indentation: Tabs should be used to indent all code blocks. Spaces should never be used to indent code blocks. Mixing tabs and spaces results in misaligned code blocks for other developers who prefer different indentation settings. if ($total_hours >= 24) { return 1; } else { if ...
guides/coding_style/php/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.Originally ...
guides/coding_style/python/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter There is no longer a style guide for Python. Instead, we now use [black](https://github.com/ambv/black), the uncompromising code formatter. When submitting a PR, please run black on your Python code.
guides/coding_style/ruby/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Ruby Style Guide ([Source](https://github.com/github/rubocop-github/blob/master/STYLEGUIDE.md)) This style guide is licensed under the [MIT License](https://github.com/github/rubocop-github/blob/master/LI...
guides/coding_style/rust/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # Rust Style Guide ([Source](https://github.com/rust-lang/rust-guidelines)) ### Opening braces always go on the same line. ``` rust fn foo() { ... } fn frobnicate(a: Bar, b: Bar, c: Bar,...
guides/coding_style/swift/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # The Official raywenderlich.com Swift Style Guide. ### Updated for Swift 3 ([Source](https://github.com/raywenderlich/swift-style-guide/blob/master/README.markdown)) This Style Guide is licensed under the...
guides/coding_style/typescript/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter # TypeScript Style Guide This is the TypeScript style guide that we use internally at Platypi! It is *semi-reasonable*, but it's more important that we keep a consistent look/feel of our code. ## Table of...
guides/documentation_guide.md
# Writing notes for each algorithm When creating the notes for algorithms of various categories, please use this template: ```Markdown # Algorithm Name Description ## Explanation Pictorial diagram to explain the algorithm > Image credits: (name of the site/organisation from where the image was referenced) ## Algo...
guides/installation_guides/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c++/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c++/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c++/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c++/windows/README.md
# Cosmos Guide: Getting Ready to program in C++ in Windows <b1> <b>Getting The Software</b> </b1> <br> <br> >The easiest way for a beginner to start working on his first C++ program is to get an IDE. In this tutorial we are going to use CodeBlocks. <br> >You can get Codeblocks from the Official Site: http://www.codebl...
guides/installation_guides/c/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/c/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/elixir/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/elixir/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/elixir/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/elixir/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/go/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/go/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/go/mac/README.md
# Go Installation Guide ### Install Go `brew install go` ### Create Go Directories `mkdir $HOME/Go` `mkdir -p $HOME/Go/src/github.com/<username>` (This is the directory where you should create your Go projects.) ### Setup Go paths `export GOPATH=$HOME/Go` `export GOROOT=/usr/local/opt/go/libexec` `export PATH=$...
guides/installation_guides/go/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/java/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/java/linux/README.md
# Java Installation Guide ### Download Download the Java version for your operating system from the [Java website](https://www.java.com/en/download/) ### Install *Note: root access may be required to write files in root directory* 1. Change into the directory you wish to install Java in. For a system-wide installati...
guides/installation_guides/java/mac/README.md
# Java Installation Guide ### Download Download the `.dmg` from the [Java website](https://www.java.com/en/download/) ### Install Double clicking the `.dmg` file will open up an installation wizard that will guide you through installation. Following the wizard will install it for you. --- <p align="center"> A mass...
guides/installation_guides/java/windows/README.md
# Java Installation Guide ### Download Download the Windows version of Java from the [Java website](https://www.java.com/en/download/) . ### Install *Note: administrative access may be required for installation* 1. Run the Java setup file (exe). 2. Give installation access to the Java installer. 3. Now give the insta...
guides/installation_guides/javascript/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/javascript/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/javascript/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/javascript/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/kotlin/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/kotlin/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/kotlin/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/kotlin/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/pascal/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/pascal/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/pascal/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/pascal/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/python/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/python/linux/README.md
## Python Installation Guide for Linux Most Linux Distros come pre-installed with python2, sometimes even python3. check by ``` python2 --version ``` if its not installed, install by ``` sudo dnf install python2 ``` this also works ``` sudo apt-get install python2 sudo apt-get install python3 sudo apt-get inst...
guides/installation_guides/python/mac/README.md
# Python Installation Guide *How to install Python on your machine* As with most Linux distributions, Python comes installed by default. Despite that, the installed version could be different with the one that you need or some packages may not be installed. ### Installing Python and the basic packages From Python's...
guides/installation_guides/python/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter Installing Python on Windows is a simple process. Visit https://www.python.org/downloads/ and choose the version you want to install. There are different installers based on your preferences: a web-based ins...
guides/installation_guides/python_pip/linux/README.md
## Python-pip Installation Guide for Linux Make sure you have pip available. You can check this by running: check by ``` pip --version ``` if its not installed, install by ``` sudo apt-get install python-pip ``` You may need to upgrade pip: ``` sudo -H pip install --upgrade pip ``` # Cosmos Guides > Your perso...
guides/installation_guides/ruby/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/ruby/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/ruby/mac/README.md
# Ruby Installation Guide *How to install Ruby on your machine* ### Installing RVM First, before installing Ruby, you must install Ruby Version Manager (RVM). The simplest way to do this is to enter the following in the console: `\curl -L https://get.rvm.io | bash -s stable` Once this command has run, you must rest...
guides/installation_guides/ruby/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/rust/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/rust/linux/README.md
([Source](https://doc.rust-lang.org/book/second-edition/ch01-01-installation.html)) ## Installing on Linux or Mac If you’re on Linux or a Mac, all you need to do is open a terminal and type this: ``` $ curl https://sh.rustup.rs -sSf | sh ``` This will download a script and start the installation. You may be prompte...
guides/installation_guides/rust/mac/README.md
([Source](https://doc.rust-lang.org/book/second-edition/ch01-01-installation.html)) ## Installing on Linux or Mac If you’re on Linux or a Mac, all you need to do is open a terminal and type this: ``` $ curl https://sh.rustup.rs -sSf | sh ``` This will download a script and start the installation. You may be prompte...
guides/installation_guides/rust/windows/README.md
([Source](https://doc.rust-lang.org/book/second-edition/ch01-01-installation.html)) ## Installing on Windows On Windows, go to https://rustup.rs and follow the instructions to download rustup-init.exe. Run that and follow the rest of the instructions it gives you. The rest of the Windows-specific commands in the boo...
guides/installation_guides/swift/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/swift/linux/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/swift/mac/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
guides/installation_guides/swift/windows/README.md
# Cosmos Guides > Your personal library of every algorithm and data structure code that you will ever encounter --- <p align="center"> A massive collaborative effort by <a href="https://github.com/OpenGenus/cosmos">OpenGenus Foundation</a> </p> ---
jsonized.jsonl
{ "filename": "code/algorithm_applications/src/binary_search/ceil_of_element/ceil_of_element_in_sorted_array.cpp", "content": "#include<bits/stdc++.h>\nusing namespace std; \nint solve(int arr[],int n, int ele){\n int ans=-1;\n int low=0;\n int high=n-1;\n while(low<=high){\n int mid=low+(high-low)/2;\n i...
makefile
#for C CFLAGS = -Wall -Wextra -lm -lgraph -lpthread C_SOURCES := $(shell find code -name '*.c') c: $(C_SOURCES) $(CC) -o $@ $^ $(CFLAGS)
scripts/README.md
# What's the stats script? The stats script deals with generating a progress list of the cosmos repo, by taking into account all algorithms currently existing in the repo and categorizing them based on the languages used to implement them. # What's the metadata generator script? The metadata generator script deals wit...
scripts/STATS.md
This is the progress list of [Cosmos](https://github.com/OpenGenus/cosmos/) | Updated on: 2019-04-28 # [ARTIFICIAL INTELLIGENCE](https://github.com/OpenGenus/cosmos/tree/master/code/artificial_intelligence) | ARTIFICIAL INTELLIGENCE | Ada | ...
scripts/STATS.txt
This is the progress list of Cosmos | Updated on: 2019-04-28 ARTIFICIAL INTELLIGENCE Ada BrainFuck C C++ Clojure ...
scripts/build_cpp.sh
cwd=$(pwd) cosmos_root_path="$(cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )/.." cd "$cosmos_root_path" echo "" echo "###############################" echo "# generating dependencies ... #" echo "###############################" make -f generate_dependencies.make || exit 1 echo "" echo "#########################" ec...
scripts/cpp_coding_style_checker.sh
CWD="$(pwd)" COSMOS_ROOT="$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )/.." COSMOS_CODE_ROOT="$COSMOS_ROOT/code" UNCRUSTIFY_ROOT="$COSMOS_ROOT/third_party/uncrustify" UNCRUSTIFY="$UNCRUSTIFY_ROOT/build/uncrustify" UNCRUSTIFY_CONFIG="$UNCRUSTIFY_ROOT/../uncrustify.cfg" total=0 error_times=0 assert() { error=$?...
scripts/filename_formatter.sh
# What is this? # auto convert files' name # # e.g., # 1) # dir="aaa/bbb/ccc/ddd.cpp" # convert: # ddd.cpp => DDD.cpp # ddd.cpp => Ddd.cpp # # 2) # dir="multi/path/sort/bubble_sort/BuBble-_-sort.cpp" # convert: # BuBble-_-sort.cpp => bu...
scripts/global-metadata.py
import json import pathlib import collections avoid_extensions = [ "", # ".md", # ".png", # ".csv", # ".class", # ".data", # ".in", # ".jpeg", # ".jpg", # ".out", # ".textclipping", # ".properties", # ".txt", # ".sbt", ] avoid_dirs = ["project", "test", "img", "i...
scripts/global_metadata.json
{ "explainBlockchain": { "location": "code/blockchain/explainBlockchain.txt", "opengenus_iq:": "https://iq.opengenus.org/p/f3110420-24e9-40f8-9ee5-79b5df2f88ff/" }, "undo in git" : { "location" : "code/git/undochanges", "opengenus_iq": "https://iq.opengenus.org/p/5a525c5f-e1ac-418c-abac-ff118587d...
scripts/javascript_code_style_checker.sh
#!/usr/bin/env bash find code/ -type f -name "*.js" | xargs prettier --check
scripts/metadata-generator.py
import json import pathlib import collections from datetime import datetime def first_layer_files(directory): p = pathlib.Path(directory) files = [] for file in p.iterdir(): if file.is_file(): files.append(str(file).split("/")[-1]) return files Path = collections.namedtuple("Entr...
scripts/metadata/code/artificial_intelligence/src/a_star/data.json
{ "location": "code/artificial_intelligence/src/a_star", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "astar.py" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/artificial_neural_network/data.json
{ "location": "code/artificial_intelligence/src/artificial_neural_network", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "dataset.csv", "ann.py" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/autoenncoder/data.json
{ "location": "code/artificial_intelligence/src/autoenncoder", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "autoencoder.ipynb" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/convolutional_neural_network/data.json
{ "location": "code/artificial_intelligence/src/convolutional_neural_network", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "cnn_adversarial_examples.ipynb", "cnn.ipynb", "train.csv", "test.csv" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/dbscan_clustering/data.json
{ "location": "code/artificial_intelligence/src/dbscan_clustering", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "readme.md", "dbscan.py" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/decision_tree/data.json
{ "location": "code/artificial_intelligence/src/decision_tree", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "decision_trees_information_gain.py", "decision_tree.py", "data_banknote_authentication.csv" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/factorization_machines/data.json
{ "location": "code/artificial_intelligence/src/factorization_machines", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "matrix_factorization.py", "README.md" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/gaussian_mixture_model/data.json
{ "location": "code/artificial_intelligence/src/gaussian_mixture_model", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "README.md" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/gaussian_naive_bayes/data.json
{ "location": "code/artificial_intelligence/src/gaussian_naive_bayes", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "gaussiannaivebayesmoons.py", "graph.png" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/gradient_boosting_trees/data.json
{ "location": "code/artificial_intelligence/src/gradient_boosting_trees", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "README.md" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/hierachical_clustering/hierachical_clustering/data.json
{ "location": "code/artificial_intelligence/src/hierachical_clustering/hierachical_clustering", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "hierarchical_clustering.ipynb" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/canny/data.json
{ "location": "code/artificial_intelligence/src/image_processing/canny", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "canny.h", "main.cpp", "canny.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/data.json
{ "location": "code/artificial_intelligence/src/image_processing", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "install_opencv.sh", "README.md" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/erode_dilate/data.json
{ "location": "code/artificial_intelligence/src/image_processing/erode_dilate", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "main.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/houghtransform/data.json
{ "location": "code/artificial_intelligence/src/image_processing/houghtransform", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "main.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/image_stitching/data.json
{ "location": "code/artificial_intelligence/src/image_processing/image_stitching", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "a.out", "imagestitching.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/prewittfilter/data.json
{ "location": "code/artificial_intelligence/src/image_processing/prewittfilter", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "prewitt.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/image_processing/sobelfilter/data.json
{ "location": "code/artificial_intelligence/src/image_processing/sobelfilter", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "sobel.cpp" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/isodata_clustering/data.json
{ "location": "code/artificial_intelligence/src/isodata_clustering", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "readme.md", "isodata.py" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/k_means/data.json
{ "location": "code/artificial_intelligence/src/k_means", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "k_means.swift", "k_means.cpp", "k_means.py", "README.md" ], "updated": "18-05-2019 08:11:06" }
scripts/metadata/code/artificial_intelligence/src/k_nearest_neighbours/data.json
{ "location": "code/artificial_intelligence/src/k_nearest_neighbours", "opengenus_discuss": "", "opengenus_iq": "", "files": [ "k_nearest_neighbours.py", "iris.data" ], "updated": "18-05-2019 08:11:06" }