Skip to content

Commit

Permalink
fix: staging build fix (#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav274 authored Sep 6, 2023
1 parent a235cf2 commit 0d8385d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/overview/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ EvaDB accelerates AI queries using a collection of optimizations inspired by SQL
AI Functions
------------

``Functions`` are typically thin wrappers around AI models and are extensively used in queries. Here is an `illustrative AI function for classifying MNIST images <https://github.com/georgia-tech-db/evadb/blob/master/evadb/udfs/mnist_image_classifier.py>`_.
``Functions`` are typically thin wrappers around AI models and are extensively used in queries. Here is an `illustrative AI function for classifying MNIST images <https://github.com/georgia-tech-db/evadb/blob/master/evadb/functions/mnist_image_classifier.py>`_.

To register an user-defined function, use the ``CREATE FUNCTION`` statement:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/usecases/image-classification.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ We will assume that the input ``MNIST`` video is loaded into ``EvaDB``. To downl
Create Image Classification Function
------------------------------------

To create a custom ``MnistImageClassifier`` function, use the ``CREATE FUNCTION`` statement. The code for the custom classification model is available `here <https://github.com/georgia-tech-db/evadb/blob/master/evadb/udfs/mnist_image_classifier.py>`_.
To create a custom ``MnistImageClassifier`` function, use the ``CREATE FUNCTION`` statement. The code for the custom classification model is available `here <https://github.com/georgia-tech-db/evadb/blob/master/evadb/functions/mnist_image_classifier.py>`_.

We will assume that the file is downloaded and stored as ``mnist_image_classifier.py``. Now, run the following query to register the AI function:

Expand Down
2 changes: 1 addition & 1 deletion script/test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ long_integration_test() {
}

notebook_test() {
PYTHONPATH=./ python -m pytest --durations=5 --nbmake --overwrite "./tutorials" --capture=sys --tb=short -v --log-level=WARNING --nbmake-timeout=3000 --ignore="tutorials/08-chatgpt.ipynb" --ignore="tutorials/14-food-review-tone-analysis-and-response.ipynb"
PYTHONPATH=./ python -m pytest --durations=5 --nbmake --overwrite "./tutorials" --capture=sys --tb=short -v --log-level=WARNING --nbmake-timeout=3000 --ignore="tutorials/08-chatgpt.ipynb" --ignore="tutorials/14-food-review-tone-analysis-and-response.ipynb" --ignore="tutorials/15-AI-powered-join.ipynb"
code=$?
print_error_code $code "NOTEBOOK TEST"
}
Expand Down

0 comments on commit 0d8385d

Please sign in to comment.