Skip to content

Commit 278432e

Browse files
committed
Merge branch 'cid/error-handling' into rishab/data-schema-refactor
2 parents 303ae40 + b7484cb commit 278432e

40 files changed

+10285
-372304
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ examples/*
1818
!examples/tabular-classification
1919
!examples/text-classification
2020

21-
2221
# Documentation generated files #
2322
#################################
2423
docs/source/generated

docs/source/reference/upload.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ Client constructor
1313

1414
UnboxClient
1515

16+
Project creation and loading
17+
----------------------------
18+
.. autosummary::
19+
:toctree: api/
20+
:template: class.rst
21+
22+
UnboxClient.create_project
23+
UnboxClient.load_project
24+
1625
Upload functions
1726
----------------
1827
.. autosummary::

examples/README.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<div align="left">
2+
<img src="logo-blue-text.svg"><br>
3+
</div>
4+
5+
# Examples Gallery | Unbox AI
6+
7+
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Unbox:%20The%20debugging%20workspace%20for%20ML%20&url=https://github.com/unboxai&via=unbox_ai&hashtags=mlops)
8+
[![PyPI Latest Release](https://img.shields.io/pypi/v/unboxapi.svg)](https://pypi.org/project/unboxapi/)
9+
[![downloads](https://pepy.tech/badge/unboxapi)](https://pepy.tech/project/unboxapi)
10+
11+
This repository contains a gallery of sample notebooks illustrating the process of **creating projects and uploading models & datasets** to the Unbox platform.
12+
13+
## Why this repository exists?
14+
15+
This repository fulfils two main goals:
16+
17+
1. It demonstrates our Python API in action
18+
2. It provides simple examples that may be similar to the problems you are solving at your organization.
19+
20+
We take privacy & security very seriously and understand that your models and datasets might contain sensitive or proprietary information. [Reach out to us](mailto:[email protected]) if you are interested in our on-premise solution.
21+
22+
In the meantime, pick a task, model framework or problem that shares similarities with something you are working on and start exploring Unbox right away!
23+
24+
## What is Unbox?
25+
26+
Unbox is a debugging workspace for ML & Data Science. Unbox combines and builds upon SOTA techniques in explainability, model and dataset versioning, synthetic data generation, data-centric testing and much more to form a powerful, **unified platform for model development**.
27+
28+
👉 [Join our Slack community!](https://l.linklyhq.com/l/1DG73) We'd love to meet you and help you get started with Unbox!
29+
30+
## Installation
31+
32+
To run the notebooks in this repository, you'll need to have the `unboxapi` library installed.
33+
34+
Install with PyPI (pip)
35+
36+
```console
37+
pip install --upgrade unboxapi
38+
```
39+
40+
or install with Anaconda (conda)
41+
42+
```console
43+
conda install unboxapi --channel conda-forge
44+
```
45+
46+
## Documentation
47+
48+
This repository complements the rest of the documentation. Navigate [here](https://docs.unbox.ai) for a quickstart guide and for in-depth tutorials. The full Python library reference can be found [here](https://reference.unbox.ai).
49+
50+
## Contributing
51+
52+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome! Just send us a message on [Slack](https://l.linklyhq.com/l/1DG73).

examples/tabular-classification/churn-classifier/Churn_Modelling.csv

Lines changed: 0 additions & 10001 deletions
This file was deleted.

examples/tabular-classification/churn-classifier/churn-classifier-sklearn.ipynb

Lines changed: 0 additions & 310 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
unboxapi
2+
numpy==1.20.1
3+
pandas==1.1.4
4+
scikit-learn==0.24.1

0 commit comments

Comments
 (0)