Skip to content

Commit

Permalink
Merge pull request #154 from JuliaAI/dev
Browse files Browse the repository at this point in the history
Update readme to reflect new ownership
  • Loading branch information
ablaom authored May 5, 2022
2 parents 3fcb5b0 + 2b08211 commit 0a6097e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: CI
on:
- push
- pull_request
pull_request:
branches:
- master
- dev
push:
branches:
- master
- dev
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand All @@ -11,6 +18,7 @@ jobs:
matrix:
version:
- '1.0'
- '1.6'
- '1' # automatically expands to the latest stable 1.x release of Julia
os:
- ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# DecisionTree.jl
# DecisionTree.jl

[![CI](https://github.com/bensadeghi/DecisionTree.jl/workflows/CI/badge.svg)](https://github.com/bensadeghi/DecisionTree.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/bensadeghi/DecisionTree.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/bensadeghi/DecisionTree.jl)
[![CI](https://github.com/JuliaAI/DecisionTree.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/DecisionTree.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/JuliaAI/DecisionTree.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaAI/DecisionTree.jl)
[![Docs Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliahub.com/docs/DecisionTree/pEDeB/0.10.11/)

### Disclaimer: this package is no longer maintained.

Julia implementation of Decision Tree (CART) and Random Forest algorithms

Created and developed by Ben Sadeghi (@bensadeghi). Now maintained by
the [JuliaAI](https://github.com/JuliaAI) organization.

Available via:
* [AutoMLPipeline.jl](https://github.com/IBM/AutoMLPipeline.jl) - create complex ML pipeline structures using simple expressions
* [CombineML.jl](https://github.com/ppalmes/CombineML.jl) - a heterogeneous ensemble learning package
Expand Down
2 changes: 1 addition & 1 deletion src/DecisionTree.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__precompile__()

module DecisionTree
module DecisionTree

import Base: length, show, convert, promote_rule, zero
using DelimitedFiles
Expand Down

0 comments on commit 0a6097e

Please sign in to comment.