-
Notifications
You must be signed in to change notification settings - Fork 0
🌟 Initialize documentation #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
EssamWisam
wants to merge
41
commits into
dev
Choose a base branch
from
docs
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
f51274d
🌟 Initialize docs
EssamWisam 1e8a421
🔥 Delete useless logo
EssamWisam 924df68
⭐️ Better documentation
EssamWisam 28c1cb9
Merge pull request #29 from JuliaAI/dev
EssamWisam 027f620
✨ Better structure and definitions
EssamWisam 03892b7
✨ Link full list above
EssamWisam 0263009
Create readme-reflect.yml
EssamWisam c0bb79d
Update readme-reflect.yml
EssamWisam 27da502
chore: update README from docs index
invalid-email-address 9953cef
✨ Better org
EssamWisam b92eefb
chore: update README from docs index
invalid-email-address 24e7e0b
✨ Better style
EssamWisam cae2e9c
Merge branch 'docs' of https://github.com/JuliaAI/MLJTransforms.jl in…
EssamWisam 50e74d1
Update docs/src/index.md
EssamWisam e85e221
chore: update README from docs index
invalid-email-address 4bbc4e7
✨ Improve README, Transformers page and Entity Embedder page
EssamWisam 02c8688
Update README.md
EssamWisam bc3b1df
✨ Improving internal documentation
EssamWisam d5af39a
💫 Add contributing and about pages
EssamWisam 4270d25
🤩 Add four tutorials
EssamWisam a0244a1
Merge branch 'dev' into docs
EssamWisam d11d892
Update docs/src/index.md
EssamWisam 14a8205
✨ Contributions change
EssamWisam 7fff9bf
Update make.jl
EssamWisam 2832695
Update make.jl
EssamWisam 72d6ab2
Enable documentation deployment for docs branch
EssamWisam 489dc42
Update documenter.yml
EssamWisam 6cfd374
Update MLJFlux to v0.6.6 to include EntityEmbedder support
EssamWisam 9f9d28e
fix mljflux
EssamWisam 09de647
✨ Add CV analysis
EssamWisam f7ac80e
✨ improve entity embeddings tutorial
EssamWisam 8bd0dc9
✨ Improve standardization
EssamWisam 2630f08
✨ Fix high cardinality dataset
EssamWisam 6dca39a
fix docs
EssamWisam 94f562b
Update docs/src/tutorials/adult_example/notebook.md
EssamWisam c89a00d
Update docs/src/tutorials/adult_example/notebook.jl
EssamWisam 1e78e89
Update docs/src/transformers/all_transformers.md
EssamWisam 3d72ff6
✨ Fix links for contrast encoder
EssamWisam 82c1631
👨🔧 More doc fixes
EssamWisam 0fc26c0
Merge branch 'dev' into docs
EssamWisam c283429
Update all_transformers.md
EssamWisam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
- instate-docs | ||
tags: '*' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: write | ||
pull-requests: read | ||
statuses: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: '1.10' | ||
- uses: julia-actions/cache@v1 | ||
- name: Install dependencies | ||
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
- name: Build and deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | ||
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key | ||
run: julia --project=docs/ docs/make.jl |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Other Transformers include more generic transformers that go beyond categorical encoding | ||
|
||
| Transformer | Brief Description | | ||
|:----------:|:----------:| | ||
| [Standardizer](@ref) | Transforming columns of numerical features by standardization | | ||
| [BoxCoxTransformer](@ref) | Transforming columns of numerical features by BoxCox transformation | | ||
| [UnivariateBoxCoxTransformer](@ref) | Apply BoxCox transformation given a single vector | | ||
| [InteractionTransformer](@ref) | Transforming columns of numerical features to create new interaction features | | ||
| [UnivariateDiscretizer](@ref) | Discretize a continuous vector into an ordered factor | | ||
|
||
```@docs | ||
MLJTransforms.Standardizer | ||
``` | ||
|
||
```@docs | ||
MLJTransforms.InteractionTransformer | ||
``` | ||
|
||
```@docs | ||
MLJTransforms.BoxCoxTransformer | ||
``` | ||
|
||
```@docs | ||
MLJTransforms.UnivariateDiscretizer | ||
``` | ||
ablaom marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.