https://github.com/durandtibo/arctix
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.6%) to scientific vocabulary
Keywords
Repository
Basic Info
- Host: GitHub
- Owner: durandtibo
- License: bsd-3-clause
- Language: Python
- Default Branch: main
- Homepage: https://durandtibo.github.io/arctix/
- Size: 4.36 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
- Releases: 7
Topics
Metadata Files
README.md
arctix
Overview
The arctix package consists of functionalities to prepare dataset of asynchronous time series.
It is design to make dataset preparation reusable and reproducible.
For each dataset, arctix provides 3 main functions:
fetch_datato load the raw data are loaded in apolars.DataFrame. When possible, it downloads automatically the data.prepare_datato prepare the data. It outputs the prepared data inpolars.DataFrame, and the metadata.to_arrayto convert the prepared data to a dictionary of numpy arrays.
For example, it is possible to use the following lines to download and prepare the MultiTHUMOS data.
```pycon
from pathlib import Path from arctix.dataset.multithumos import fetchdata, preparedata, toarray datasetpath = Path("/path/to/dataset/multithumos") dataraw = fetchdata(datasetpath) # doctest: +SKIP data, metadata = preparedata(dataraw) # doctest: +SKIP arrays = toarray(data) # doctest: +SKIP
```
Documentation
- latest (stable): documentation from the latest stable release.
- main (unstable): documentation associated to the main branch of the repo. This documentation may contain a lot of work-in-progress/outdated/missing parts.
Installation
We highly recommend installing
a virtual environment.
arctix can be installed from pip using the following command:
shell
pip install arctix
To make the package as slim as possible, only the minimal packages required to use arctix are
installed.
To include all the packages, you can use the following command:
shell
pip install arctix[all]
Please check the get started page to see how to
install only some specific packages or other alternatives to install the library.
The following is the corresponding karbonn versions and dependencies.
| batcharray | batcharray | coola | iden | numpy | polars | python |
|--------------|----------------|----------------|------------------|---------------|-----------------|---------------|
| main | >=0.1,<1.0 | >=0.8.4,<1.0 | ">=0.1,<1.0" | >=1.22,<3.0 | >=1.0,<2.0 | >=3.9,<3.14 |
| 0.0.8 | >=0.1,<1.0 | >=0.8.4,<1.0 | ">=0.1,<1.0" | >=1.22,<3.0 | >=1.0,<2.0 | >=3.9,<3.14 |
| 0.0.7 | >=0.0.2,<1.0 | >=0.3,<1.0 | ">=0.0.3,<1.0" | >=1.22,<3.0 | >=1.0,<2.0 | >=3.9,<3.13 |
| 0.0.6 | >=0.0.2,<0.1 | >=0.3,<1.0 | ">=0.0.3,<1.0" | >=1.22,<2.0 | >=0.20.0,<1.0 | >=3.9,<3.13 |
| 0.0.5 | >=0.0.2,<0.1 | >=0.3,<1.0 | ">=0.0.3,<1.0" | >=1.22,<2.0 | >=0.20.0,<1.0 | >=3.9,<3.13 |
| 0.0.4 | >=0.0.2,<0.1 | >=0.3,<1.0 | ">=0.0.3,<1.0" | >=1.22,<2.0 | >=0.20.0,<1.0 | >=3.9,<3.13 |
| 0.0.3 | >=0.0.2,<0.1 | >=0.3,<1.0 | ">=0.0.3,<1.0" | >=1.22,<2.0 | >=0.20.0,<1.0 | >=3.9,<3.13 |
Contributing
Please check the instructions in CONTRIBUTING.md.
API stability
:warning: While arctix is in development stage, no API is guaranteed to be stable from one
release to the next.
In fact, it is very likely that the API will change multiple times before a stable 1.0.0 release.
In practice, this means that upgrading arctix to a new version will possibly break any code that
was using the old version of arctix.
License
arctix is licensed under BSD 3-Clause "New" or "Revised" license available in LICENSE
file.
Owner
- Name: Thibaut Durand
- Login: durandtibo
- Kind: user
- Location: Vancouver, Canada
- Company: Borealis AI
- Repositories: 37
- Profile: https://github.com/durandtibo
Researcher in Computer Vision and Machine Learning. This profile is used for personal projects/contributions
GitHub Events
Total
- Create event: 170
- Issues event: 1
- Release event: 1
- Delete event: 160
- Issue comment event: 182
- Push event: 373
- Pull request review event: 118
- Pull request event: 336
Last Year
- Create event: 170
- Issues event: 1
- Release event: 1
- Delete event: 160
- Issue comment event: 182
- Push event: 373
- Pull request review event: 118
- Pull request event: 336
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 2
- Total pull requests: 684
- Average time to close issues: 6 days
- Average time to close pull requests: 7 days
- Total issue authors: 2
- Total pull request authors: 3
- Average comments per issue: 1.0
- Average comments per pull request: 0.94
- Merged pull requests: 542
- Bot issues: 1
- Bot pull requests: 452
Past Year
- Issues: 2
- Pull requests: 354
- Average time to close issues: 6 days
- Average time to close pull requests: 7 days
- Issue authors: 2
- Pull request authors: 3
- Average comments per issue: 1.0
- Average comments per pull request: 0.98
- Merged pull requests: 264
- Bot issues: 1
- Bot pull requests: 334
Top Authors
Issue Authors
- durandtibo (1)
- dependabot[bot] (1)
Pull Request Authors
- dependabot[bot] (411)
- durandtibo (232)
- github-actions[bot] (41)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 16,700 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 14
- Total maintainers: 1
pypi.org: arctix
- Homepage: https://github.com/durandtibo/arctix
- Documentation: https://arctix.readthedocs.io/
- License: BSD-3-Clause
-
Latest release: 0.0.8
published over 1 year ago