One line to host them all. Bootstrap your image search case in minutes.

Overview

Jina NOW logo: The data structure for unstructured data
One line to host them all. Bootstrap your image search case in minutes. Survey

Python 3.7 3.8 3.9 3.10 PyPI

Jina NOW logo: The data structure for unstructured data

NOW gives the world access to customized neural image search in just one line of code. Main features

  • 🐥 Easy: Minimal effort required to set up your search case
  • 🐎 Fast: Set up your search case within minutes
  • 🌈 Quality: If you provide labels to your documents, Jina NOW fine-tunes a model for you
  • 🌳 Reliable: We take care of the deployment and maintenance (coming soon)
  • Nocode: Deployment can be done by non-technical people

Installation

pip install jina-now

In case you need sudo for running Docker, install and use jina-now using sudo as well.

Mac M1

For the Mac M1 it is generally recommended using a conda environment as outlined in the Jina documentation. In a new conda environment first execute conda install grpcio tokenizers protobuf. Then run pip install jina-now.

Usage

jina now [start | stop] --data [<pushpullid> | <localpath> | <url>] --quality [medium | good | excellent] --cluster <k8s-cluster-name>

Quick Start

jina now start

Use CLI Parameters

jina now start --quality medium --data /local/img/folder

Use API

You can now send requests to the API using the jina client. This case shows a local deployment.

from jina import Client    
client = Client(
        host='localhost',
        port=31080,
) 
response = client.search(
        Document(text=search_text), # or in case you send an image: Document(url=image_path),
        parameters={"limit": 9, "filter": {}},
)

Cleanup

jina now stop

Requirements

  • Linux or Mac
  • Python 3.7, 3.8, 3.9 or 3.10

Local execution

  • Docker installation
  • 10 GB assigned to docker
  • User must be permitted to run docker containers

Google Cloud deployment

  • Billing account enabled

Jina Flow as a service

  • No further requirements (coming soon)

Supported Modalities (more will be added)

  • Text
  • Image
  • Audio
  • Video
  • 3D mesh
  • PDF
  • ...

IMAGE ALT TEXT HERE


Examples

👕 Fashion image
☢️ Chest X-Ray
💰 NFT - bored apes
🖼 Art image
🚗 Cars image
🏞 Street view image
🦆 Birds image

Now use your custom data :)

Comments
  • feat: new data format

    feat: new data format

    closes #582

    Introduces new data format described in the issue.

    From now on, we can accept both regular and multimodal docarray formats which will then be transformed into a standardized internal data format most components (preprocessor, encoders, indexers) will work with.

    The approach works for the existing demo datasets too, i.e. it can also handle multimodal data that is passed separately DocumentArray([Document(text='jina ai'), Document(uri='jina.jpg'), ..]) and not as a multimodal docarray.

    Notes: We had to disable 2 apps in this PR which will be soon refactored and enabled again. https://github.com/jina-ai/now/issues/656 and https://github.com/jina-ai/now/issues/650 Currently, we use both traversal and access paths. This should be changed in the future. https://github.com/jina-ai/now/issues/629

    area/testing area/core component/data size/xl 
    opened by jupyterjazz 81
  • Refactor simplify preprocessing

    Refactor simplify preprocessing

    changes:

    • preprocessing is unified and not app-specific anymore. A modality is always preprocessed in the same way
    • everything that needs to be encoded is put into cc level after the preprocessor, i.e., images are on cc level and video frames as well. Also, sentences are on cc level
    • indexer only cares about cc level and does not make a distinction anymore between different levels
    • ocr computation simplified
    • ci bug fixed - before some executors were not rebuilt
    • fine-tuning deactivated - we have no case at the moment where the improvement justifies the lack of generalization
    area/testing area/housekeeping area/cicd area/setup area/core component/finetuning size/xl 
    opened by florian-hoenicke 35
  • refactor: remove output modality

    refactor: remove output modality

    This PR

    • removes output_modality from UserInput and uses search_fields instead
    • removes output modality question from CLI
    • removes unused app TextAndImage, MusicToMusic
    • removes unused modality TextAndImage, MusicToMusic
    • fixes identification of modalities in the case we have no subfolder structure in local path or s3 bucket
    • defines constants to manage which modalities are supported search & filter fields
    • removes app attribute from NOWPreprocessor as it's unused
    • updates BFF and playground to reflect removal of apps
    • refactor detect_schema to use the same code for s3 and local files to understand the structure of the data

    CLI: Screenshot 2022-12-15 at 20 03 13

    BFF still works (only showed text-to-video) Screenshot 2022-12-15 at 20 06 23


    • [ ] This PR references an open issue
    • [x] Tests changed
    • [ ] Documentation adjusted
    • [x] checked changes are back compatible for relevant flows
    area/testing area/housekeeping area/cicd area/core component/data component/finetuning component/cli size/xl 
    opened by joschkabraun 27
  • feat: add elastic indexer

    feat: add elastic indexer

    This PR introduces the ElasticIndexer which should be usable by any NOW app. It should accommodate the following:

    • [x] allow indexing of multi-modal documents in an Elasticsearch index (index endpoint)
    • [x] make script-score queries that combine BM25 and vector search (search endpoint)
    • [x] list all documents in index (list endpoint)
    area/testing area/housekeeping area/cicd area/core component/deploymeny size/xl 
    opened by violenil 26
  • refactor: separated apps

    refactor: separated apps

    The logic of our apps is currently split all over the code base. This pr aims to bundle the logic within single classes wich allows parallel development on the applications

    area/testing area/core component/data component/deploymeny component/finetuning component/cli size/xl 
    opened by florian-hoenicke 23
  • docs: update to make it easier understandable

    docs: update to make it easier understandable

    • [ ] add finetuning to the docs
    • [ ] bff description
    • [ ] production readiness (QPS 13, latency 300 ms)
    • [ ] security
    • [ ] s3 bucket
    • [ ] also add google analytics
    • [ ] find out more things to add
    opened by joschkabraun 15
  • feat: preprocessing and data generation

    feat: preprocessing and data generation

    Closes https://github.com/jina-ai/now/issues/417 and https://github.com/jina-ai/now/issues/421

    Implements preprocessing and fine-tuning data generation (part of setup) for text to text+image app.

    • For the moment, we don't ask user for anything and define all required parameters in resources/nest/config.json which is loaded as a Task dataclass.
    • Data generation is general (not only for nest). It gets a dataset and information about encoder + generation methods and produces fine-tuning data.
    area/testing area/setup area/core component/data component/finetuning size/xl 
    opened by jupyterjazz 8
  • feat: refactor fine-tune logic

    feat: refactor fine-tune logic

    Closes #313 by:

    • removes the question to delete old WOLF flows before deploying new one (this is a suggestion, given that people can deploy multiple flows through the storefront)
    • introduces additional encode flow for all apps to be used when embeddings are inferred before finetuning
    • split of deploy_flow into an function only concerned with deploying flows (called deploy_flow in flow.py) and another function concerned with indexing data (call_index in run_backend.py)
    • enables monitoring in flows where it is missing
    • adds finetuning for text-to-video and text-to-text
    • removes unused argumens in run_bff_playground.run
    • moves finetuning logic into run_finetuning.py entirely
    • renames finetune_now to maybe_finetune which is now main entry point of finetuning logic
    • fixes bug that calculating embeddings for finetuning will always deploy a k8s locally even for WOLF deployment
    • creates now_common/utils.py which contains
      • shared function to create flow environment variables dictionary for all apps (used to be in run_backend.py
      • a refactored setup function which is used by all current apps (main logic stems from finetune_flow_setup in run_backend.py)
        • note: that music_to_music app has for the demo datasets a slightly different flow as we need to integrate an external executor
    area/testing area/core component/deploymeny component/finetuning size/xl 
    opened by joschkabraun 8
  • chore: update docarray version to 0.13.17

    chore: update docarray version to 0.13.17

    This PR closes #223

    From this migration onwards, the dataset carry the docarray version in the name Screenshot 2022-06-06 at 16 15 36

    All datasets have been migrated to version 0.13.17 an stored in the Storage Bucket

    The migration is performed automatically using this Repo

    area/testing area/housekeeping area/cicd area/setup area/core component/data size/s 
    opened by slettner 8
  • feat: use cas executor for clip

    feat: use cas executor for clip

    Closes #427 by reusing CaS CLIP executor for any remote deployment. Quality option won't be necessary as best model is used for remote. For local deployment smaller model is used in order to make it faster.

    Also, CaS CLIP executor still calculates embedding no matter if it is set or not. Therefore, #430 is also closed by this PR.

    size/l area/testing area/core component/data component/finetuning 
    opened by joschkabraun 6
  • feat: Problem with new version of docarray

    feat: Problem with new version of docarray

    When using latest version of docarray, we get following error on calling da = da.shuffle(seed=42). This needs to be investigated and then the concern should be raised with docarray team, if it is an upstream problem. image

    opened by makram93 6
  • docs: update API documentation

    docs: update API documentation

    The documentation of our API needs to be updated. For example, the request body of a search should look something like this:

    {
      "host": "grpcs://smart-404-nowapi-69dd3b9487.wolf.jina.ai",
      "port": "443",
      "query": {"text_field": {"text": "red shoes"}},
      "limit": "3"   
    }
    
    opened by violenil 0
  • ci: remove WOLF flows more quickly

    ci: remove WOLF flows more quickly

    • [ ] CI runs for which any assert fails, fail to clean up the WOLF flows. The issue is that the flow details are only written to disk after executing them
    • [ ] make sure only 1 preprocessor is deployed (currently 15 are deployed)
    • [ ] additionally, let's move CI wolf deployment from WOLF's production environment to the CI environment
    opened by joschkabraun 0
  • refactor: rename to index_fields and query_fields

    refactor: rename to index_fields and query_fields

    As discussed here, rename all relevant code occurrences to index_fields and query_fields.

    UAC:

    • no usage of input_modality, output_modality, 'search_fields` or similar
    • only usage of index_fields, query_fields
    opened by joschkabraun 0
Releases(v0.0.42)
  • v0.0.42(Dec 23, 2022)

    Release Note (0.0.42)

    Release time: 2022-12-23 15:10:54

    🙇 We'd like to thank all contributors for this new release! In particular, Saba Sturua, Florian Hönicke, Jina Dev Bot, 🙇

    🆕 New Features

    • [0fc0f08e] - elastic cluster in executor (#804) (Florian Hönicke)

    🐞 Bug fixes

    • [62f98bc0] - order of search options (#811) (Saba Sturua)
    • [01d66b23] - index field (#802) (Florian Hönicke)
    • [a77e7a16] - handle new modality in playground (#806) (Saba Sturua)

    🍹 Other Improvements

    • [c3c2a141] - Refactor remove text to video (#788) (Florian Hönicke)
    • [789189ae] - version: the next version will be 0.0.42 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.41(Dec 22, 2022)

    Release Note (0.0.41)

    Release time: 2022-12-22 16:57:36

    🙇 We'd like to thank all contributors for this new release! In particular, IyadhKhalfallah, Saba Sturua, Isabelle Mohr, Mohammad Kalim Akram, Joschka Braun, Alex Cureton-Griffiths, Florian Hönicke, Nikolas Pitsillos, Jina Dev Bot, 🙇

    🆕 New Features

    • [dda9bd95] - migrate demo ds (#761) (Mohammad Kalim Akram)
    • [00d059bc] - n-to-n ElasticIndexer multi modal doc (#735) (Isabelle Mohr)

    🐞 Bug fixes

    • [36ef1650] - replicas for local deployment (#770) (IyadhKhalfallah)
    • [72f1fa94] - search with tags (#755) (Saba Sturua)
    • [f18b09ad] - remove unwanted chars from app name (#797) (Isabelle Mohr)
    • [a6ac8b12] - filter types (#785) (Mohammad Kalim Akram)
    • [0a60c865] - fix playground display blob (#796) (Joschka Braun)
    • [6890ec51] - grammar and naming (#781) (Alex Cureton-Griffiths)
    • [5892568e] - gif in image app (#786) (Florian Hönicke)
    • [c1467f62] - reversed text and image modalities (#771) (IyadhKhalfallah)
    • [21eb3518] - expand user (#773) (Florian Hönicke)
    • [fe22b5e3] - disable telemetry for executors (#750) (Saba Sturua)
    • [fd77921f] - enable local testing (#767) (Mohammad Kalim Akram)

    🧼 Code Refactoring

    • [89df9c5b] - simplify dialog (#787) (Florian Hönicke)
    • [7122af10] - remove output modality (#763) (Joschka Braun)
    • [0c284b15] - utils: use hubble to get user token (#764) (Nikolas Pitsillos)

    📗 Documentation

    • [6b1edc8f] - refactor input format explanation (#775) (Isabelle Mohr)

    🏁 Unit Test and CICD

    • [96857e50] - elastic executor tests fix (#777) (Isabelle Mohr)
    • [989f8078] - revert quality to 224x224 (#747) (Florian Hönicke)

    🍹 Other Improvements

    • [dd2c6cb2] - Feat multimodal bff (#772) (Joschka Braun)
    • [943a2e57] - version: the next version will be 0.0.41 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.40(Dec 12, 2022)

    Release Note (0.0.40)

    Release time: 2022-12-12 23:45:33

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Mohammad Kalim Akram, Aziz Belaweid, Alex Cureton-Griffiths, Isabelle Mohr, Jina Dev Bot, 🙇

    🆕 New Features

    • [873981dc] - add schema functions (#712) (Aziz Belaweid)
    • [33eb8b02] - adapt new wolf gateway (#734) (Aziz Belaweid)
    • [ad15ae2b] - quality improvement vision (#730) (Florian Hönicke)

    🐞 Bug fixes

    • [023907c3] - new remote deployment (#749) (Mohammad Kalim Akram)
    • [14819672] - bump version paddlepaddle (#738) (Florian Hönicke)
    • [f643197c] - workaround core wolf (#728) (Florian Hönicke)
    • [691392b9] - change all instances of jina hub to jina ai cloud (#727) (Alex Cureton-Griffiths)

    🧼 Code Refactoring

    • [44720eee] - cleanup data loading (#752) (Florian Hönicke)
    • [82078ffb] - move jpeg compression (#751) (Florian Hönicke)
    • [af8a0458] - remove one level in call stack (#736) (Florian Hönicke)
    • [2fe54b30] - improve performance curation (#731) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [df73d265] - reactivate (#739) (Florian Hönicke)

    🍹 Other Improvements

    • [a9b8a707] - Refactor remove redundancy on ci (#746) (Florian Hönicke)
    • [f356c457] - add a PR template (#725) (Isabelle Mohr)
    • [e9c9919c] - version: the next version will be 0.0.40 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.39(Dec 5, 2022)

    Release Note (0.0.39)

    Release time: 2022-12-05 11:14:34

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Nikolas Pitsillos, Mohammad Kalim Akram, Aziz Belaweid, Jina Dev Bot, 🙇

    🆕 New Features

    • [241f56e0] - use jina 3.10.0 (#702) (Aziz Belaweid)

    🐞 Bug fixes

    • [92121fa8] - different search term after curation (#726) (Florian Hönicke)
    • [fce54245] - path from user dir (#716) (Florian Hönicke)
    • [c6094fd7] - old clip encoder version (#717) (Florian Hönicke)
    • [f688b931] - bff text to video (#706) (Florian Hönicke)
    • [94d666e1] - text to video (#705) (Florian Hönicke)
    • [e2937e15] - playground bug (#701) (Aziz Belaweid)

    🏁 Unit Test and CICD

    • [48c80a3b] - separate remote and local tests (#719) (Nikolas Pitsillos)

    🍹 Other Improvements

    • [ed8bc8c6] - Fix top k in playground url (#709) (Mohammad Kalim Akram)
    • [b9db94ad] - version: the next version will be 0.0.39 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.38(Nov 24, 2022)

    Release Note (0.0.38)

    Release time: 2022-11-24 11:10:02

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Mohammad Kalim Akram, Aziz Belaweid, Isabelle Mohr, Saba Sturua, Jina Dev Bot, 🙇

    🆕 New Features

    • [d4a9cdb0] - deactivate telemetry on ci (#688) (Florian Hönicke)
    • [2ff6c826] - add migration to jcloud (#674) (Aziz Belaweid)
    • [10ed9123] - new data format (#645) (Saba Sturua)
    • [7792cf26] - curation (#682) (Florian Hönicke)

    🐞 Bug fixes

    • [c81e0139] - local deployment (#697) (Florian Hönicke)
    • [25d6dd8a] - flatten list (#694) (Aziz Belaweid)
    • [d73ab749] - enable cors on bff (#692) (Mohammad Kalim Akram)
    • [ec344db3] - split_by_sentences not working in txt2txt app (#655) (Isabelle Mohr)
    • [e1e9b40f] - support older flow (#684) (Florian Hönicke)

    🧼 Code Refactoring

    • [0c2f6095] - converge image-text apps (#669) (Mohammad Kalim Akram)
    • [f222810f] - preprocessor build time (#686) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [08ede9c3] - remove unused test (#687) (Aziz Belaweid)

    🍹 Other Improvements

    • [90b178b3] - Test cli (#681) (Florian Hönicke)
    • [398de005] - version: the next version will be 0.0.38 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.37(Nov 18, 2022)

    Release Note (0.0.37)

    Release time: 2022-11-18 07:45:43

    🙇 We'd like to thank all contributors for this new release! In particular, Joschka Braun, Yanlong Wang, Florian Hönicke, Aziz Belaweid, Mohammad Kalim Akram, Jina Dev Bot, 🙇

    🆕 New Features

    • [753f160c] - move ocr detection into preprocessor (#677) (Joschka Braun)
    • [27cedd0e] - add app name (#658) (Aziz Belaweid)
    • [b228fe5a] - add tags (#648) (Aziz Belaweid)

    🐞 Bug fixes

    • [6c653840] - ci: hub push no-cache flag (#676) (Yanlong Wang)
    • [5d567fbe] - typo in labels (#666) (Aziz Belaweid)
    • [e2702669] - event loop (#662) (Mohammad Kalim Akram)
    • [de721914] - duration (#659) (Florian Hönicke)

    🧼 Code Refactoring

    • [01712254] - force push (#675) (Florian Hönicke)
    • [a86125c5] - breakpoints in executors (#644) (Florian Hönicke)
    • [3993639d] - wrap auth executor (#663) (Florian Hönicke)
    • [a6874e75] - default value secured (#642) (Florian Hönicke)

    📗 Documentation

    • [a2e219a9] - explain input format (#652) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [56735bb0] - faster on ci (#661) (Florian Hönicke)

    🍹 Other Improvements

    • [6d3d41ca] - Fix durations cd (#660) (Florian Hönicke)
    • [3c1bce7c] - version: the next version will be 0.0.37 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.36(Nov 10, 2022)

    Release Note (0.0.36)

    Release time: 2022-11-10 08:33:34

    🙇 We'd like to thank all contributors for this new release! In particular, Joschka Braun, Isabelle Mohr, Mohammad Kalim Akram, Aziz Belaweid, Florian Hönicke, Jina Dev Bot, 🙇

    🆕 New Features

    • [07d2e37f] - use ocr to detect matching text (#601) (Joschka Braun)
    • [021676f6] - add autocomplete (#579) (Aziz Belaweid)

    🐞 Bug fixes

    • [4be321c0] - update demo links (#640) (Mohammad Kalim Akram)
    • [a669fe1c] - debug (#639) (Aziz Belaweid)
    • [60ab8551] - format the script-score query source correctly (#637) (Isabelle Mohr)
    • [e63bff20] - ci qdrant executor update (#636) (Aziz Belaweid)
    • [6653bfe6] - add timeout (#630) (Aziz Belaweid)
    • [8e5c7255] - autocomplete (#619) (Aziz Belaweid)

    🧼 Code Refactoring

    • [a5775865] - remove proto req (#628) (Florian Hönicke)
    • [479cf198] - autocomplete (#624) (Aziz Belaweid)

    🏁 Unit Test and CICD

    • [af112a86] - run multimodal demo in end-to-end-tests (#597) (Isabelle Mohr)

    🍹 Other Improvements

    • [f1eeda97] - Fix add sync (#627) (Mohammad Kalim Akram)
    • [29bb7c5f] - version: the next version will be 0.0.36 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.35(Oct 26, 2022)

    Release Note (0.0.35)

    Release time: 2022-10-26 10:45:53

    🙇 We'd like to thank all contributors for this new release! In particular, Joschka Braun, Alex Cureton-Griffiths, Jina Dev Bot, 🙇

    🐞 Bug fixes

    • [8cc87d03] - fix url data error (#617) (Joschka Braun)

    📗 Documentation

    • [93cf9cc4] - reword, number readme points (#612) (Alex Cureton-Griffiths)

    🍹 Other Improvements

    • [e8b3aa1e] - version: the next version will be 0.0.35 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.34(Oct 25, 2022)

    Release Note (0.0.34)

    Release time: 2022-10-25 11:21:00

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Aziz Belaweid, Jina Dev Bot, 🙇

    🆕 New Features

    • [270a2068] - support domain name (#611) (Mohammad Kalim Akram)

    🐞 Bug fixes

    • [598a288c] - catch error in script (Mohammad Kalim Akram)
    • [ab651bd6] - retention days (#608) (Aziz Belaweid)
    • [54287757] - user input data typo (#610) (Aziz Belaweid)

    🍹 Other Improvements

    • [b9260f0d] - version: the next version will be 0.0.34 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.33(Oct 20, 2022)

    Release Note (0.0.33)

    Release time: 2022-10-20 15:31:43

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Aziz Belaweid, Saba Sturua, Mohammad Kalim Akram, Joschka Braun, Isabelle Mohr, Jina Dev Bot, 🙇

    🆕 New Features

    • [53773d1f] - qdrant indexer (#528) (Florian Hönicke)
    • [5c0a0b83] - github actions for example deployment (#574) (Mohammad Kalim Akram)
    • [9c02f3f8] - add elastic indexer (#474) (Isabelle Mohr)
    • [2ffe80cf] - sum ranker (#577) (Florian Hönicke)

    🐞 Bug fixes

    • [3a4564e4] - data generation test (#603) (Saba Sturua)
    • [a8850446] - replace with single line (#600) (Mohammad Kalim Akram)
    • [6f75ed00] - move script (#595) (Mohammad Kalim Akram)
    • [27588f70] - remove annlite test from CD (Mohammad Kalim Akram)
    • [7670e92e] - comment annlite test (Mohammad Kalim Akram)
    • [2f4b4d15] - minor update (#591) (Mohammad Kalim Akram)
    • [60599948] - elastic docker (#585) (Florian Hönicke)

    🧼 Code Refactoring

    • [3d880739] - remove finetuner comparison (#605) (Florian Hönicke)
    • [bd3aa90b] - remove unused code (#604) (Aziz Belaweid)
    • [18d4528e] - remove elastic check (#598) (Mohammad Kalim Akram)
    • [59824f04] - executors (#594) (Florian Hönicke)
    • [8022a34b] - remove now post process (#590) (Mohammad Kalim Akram)
    • [fc9aae23] - dialog (#548) (Joschka Braun)
    • [6bad3aed] - base indexer (#575) (Florian Hönicke)

    🍹 Other Improvements

    • [c068a71b] - Fix deploy example script (#596) (Mohammad Kalim Akram)
    • [4373715c] - version: the next version will be 0.0.33 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.32(Oct 5, 2022)

    Release Note (0.0.32)

    Release time: 2022-10-05 12:39:26

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Aziz Belaweid, Florian Hönicke, Saba Sturua, 🙇

    🐞 Bug fixes

    • [ec9da2e7] - url playground not showing (#564) (Aziz Belaweid)
    • [c7cfc5e6] - music to music app (#560) (Aziz Belaweid)
    • [ea84e182] - convert user emails to list (#553) (Mohammad Kalim Akram)
    • [98f9b598] - infra params (#547) (Florian Hönicke)
    • [287b57a9] - bump version (#551) (Aziz Belaweid)
    • [a7b25879] - make url more obvious (#544) (Aziz Belaweid)
    • [1f6f09fa] - multiple initialisation prints (#545) (Saba Sturua)
    • [e6d94cfd] - bug unpickling error (#541) (Aziz Belaweid)

    📗 Documentation

    • [cdeee4bd] - fix gifs (#538) (Aziz Belaweid)

    🍹 Other Improvements

    • [195f7b34] - Fix enable static cname (#566) (Mohammad Kalim Akram)
    • [f51f59c9] - bump finetuner version (#549) (Saba Sturua)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.31(Sep 27, 2022)

    Release Note (0.0.30)

    Release time: 2022-09-20 15:12:50

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Aziz Belaweid, Saba Sturua, Mohammad Kalim Akram, Joschka Braun, Jina Dev Bot, 🙇

    🆕 New Features

    • [72613a0d] - add filtering playground (#473) (Aziz Belaweid)

    🐞 Bug fixes

    • [23cdab82] - add jina requirement (#519) (Aziz Belaweid)
    • [1a50cde9] - logout issue (#511) (Aziz Belaweid)
    • [683027f7] - cd (#505) (Aziz Belaweid)

    🧼 Code Refactoring

    • [00cf976e] - helpful script to deploy text to video (#510) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [2cb6d082] - add tests for nest (#502) (Saba Sturua)

    🍹 Other Improvements

    • [1bf13ea6] - Fix revert playground tags (#520) (Florian Hönicke)
    • [8c61d496] - version: the next version will be 0.0.30 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.30(Sep 20, 2022)

    Release Note (0.0.30)

    Release time: 2022-09-20 15:12:50

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Aziz Belaweid, Saba Sturua, Mohammad Kalim Akram, Joschka Braun, Jina Dev Bot, 🙇

    🆕 New Features

    • [72613a0d] - add filtering playground (#473) (Aziz Belaweid)

    🐞 Bug fixes

    • [23cdab82] - add jina requirement (#519) (Aziz Belaweid)
    • [1a50cde9] - logout issue (#511) (Aziz Belaweid)
    • [683027f7] - cd (#505) (Aziz Belaweid)

    🧼 Code Refactoring

    • [00cf976e] - helpful script to deploy text to video (#510) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [2cb6d082] - add tests for nest (#502) (Saba Sturua)

    🍹 Other Improvements

    • [1bf13ea6] - Fix revert playground tags (#520) (Florian Hönicke)
    • [8c61d496] - version: the next version will be 0.0.30 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.29(Sep 12, 2022)

    Release Note (0.0.29)

    Release time: 2022-09-12 14:25:40

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Saba Sturua, Joschka Braun, Aziz Belaweid, Mohammad Kalim Akram, Jina Dev Bot, 🙇

    🆕 New Features

    • [5c844174] - nest setup (#472) (Saba Sturua)
    • [d84cdb1a] - improve code coverage (#492) (Florian Hönicke)
    • [10edb844] - preprocessor gets tags (#490) (Florian Hönicke)
    • [dea53bfc] - AnnLite indexer on ci + secure + only AnnLite indexer + replace CaS CLIP executor (#487) (Joschka Braun)
    • [26521cde] - adapt finetuning to nest (#470) (Saba Sturua)
    • [36f94749] - set jina log level of gateway to debug (#477) (Joschka Braun)
    • [a26439b4] - index delete by filter (#476) (Florian Hönicke)
    • [64507fcb] - add list endpoint (#471) (Florian Hönicke)

    🐞 Bug fixes

    • [ffa74511] - missing arg in music app (#500) (Joschka Braun)
    • [715152c3] - no email ignore error (#496) (Florian Hönicke)
    • [9a6ebcf4] - docs build (#497) (Aziz Belaweid)
    • [6debb964] - add api keys (#494) (Florian Hönicke)
    • [f116de09] - remove docarray indexer (#491) (Joschka Braun)
    • [cbbfc1a7] - update cli parser (#483) (Mohammad Kalim Akram)
    • [d94338eb] - secure preprocessor (#465) (Joschka Braun)

    🧼 Code Refactoring

    • [28a45303] - remove security executor deployment (#495) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [e44dee1c] - preprocessing (#493) (Florian Hönicke)

    🍹 Other Improvements

    • [0719b450] - version: the next version will be 0.0.29 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.28(Sep 7, 2022)

    Release Note (0.0.28)

    Release time: 2022-09-07 12:23:10

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Joschka Braun, Aziz Belaweid, Florian Hönicke, Saba Sturua, Yanlong Wang, Alex Cureton-Griffiths, Isabelle Mohr, Han Xiao, Jina Dev Bot, 🙇

    🆕 New Features

    • [1d3f6a09] - update executors (#469) (Aziz Belaweid)
    • [a13d9584] - preprocessing and data generation (#440) (Saba Sturua)
    • [3087c74a] - use cas executor for clip (#437) (Joschka Braun)
    • [ab09f7b2] - add tag search (#422) (Aziz Belaweid)
    • [34293236] - add path preprocessor (#411) (Florian Hönicke)
    • [8f1377aa] - add a flow for text2text+image app (#419) (Saba Sturua)
    • [1ae08cd0] - add nest modalities (#412) (Isabelle Mohr)
    • [97166cf3] - add tags (#398) (Aziz Belaweid)
    • [a5b13635] - setup an app for Nest (#406) (Saba Sturua)

    🐞 Bug fixes

    • [1aa5fe88] - loading tags (#468) (Joschka Braun)
    • [13489240] - adapt annlite (#442) (Aziz Belaweid)
    • [6cfac282] - handle different image formats (#466) (Florian Hönicke)
    • [bb0f1869] - file endings (#455) (Florian Hönicke)
    • [9f100116] - missing space in sentence (#460) (Alex Cureton-Griffiths)
    • [1c77d26a] - update flow with env var (#431) (Mohammad Kalim Akram)
    • [ae3a2f09] - reset post processor mem usage (#426) (Joschka Braun)
    • [3739a2ab] - set env retention days to 0 for CI (#428) (Mohammad Kalim Akram)
    • [eff5e111] - yamls (#410) (Aziz Belaweid)
    • [696cd0a6] - apply-latency: replace apply with for (#407) (Joschka Braun)

    🧼 Code Refactoring

    • [b8f4f11c] - performance test (#413) (Florian Hönicke)
    • [a324a17a] - bump jina version (#464) (Florian Hönicke)
    • [7f4e3304] - ci for preprocessor (#462) (Joschka Braun)
    • [4a817f7d] - deactivate gpu (#441) (Florian Hönicke)
    • [390ecdcd] - reduce consumption (#435) (Florian Hönicke)
    • [8a7f114e] - bump playground version (#432) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [2b55eb80] - enable hub push verbosity for more logs (#463) (Yanlong Wang)
    • [d8c643bf] - timeout (#454) (Florian Hönicke)
    • [ed0c93b8] - shorten gif test (#420) (Joschka Braun)

    🍹 Other Improvements

    • [c803f18c] - Refactor dialog app options (#459) (Mohammad Kalim Akram)
    • [e80498ff] - smaller retention days to save budget (Han Xiao)
    • [6b477ab8] - version: the next version will be 0.0.28 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.27(Aug 25, 2022)

    Release Note (0.0.27)

    Release time: 2022-08-25 11:14:24

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Florian Hönicke, Jina Dev Bot, 🙇

    🆕 New Features

    • [37429d6f] - trigger dispatch workflows (#400) (Mohammad Kalim Akram)

    🐞 Bug fixes

    • [83935d60] - check embed for music app (Mohammad Kalim Akram)
    • [6e4a76eb] - check ony if bi modal (Mohammad Kalim Akram)

    🍹 Other Improvements

    • [aacc9e05] - update token for workflow dispatch (#401) (Mohammad Kalim Akram)
    • [8d377e71] - Feat custom annlite (#399) (Florian Hönicke)
    • [4bd9d010] - revert changes (Mohammad Kalim Akram)
    • [0aade695] - version: the next version will be 0.0.27 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.26(Aug 24, 2022)

    Release Note (0.0.26)

    Release time: 2022-08-24 09:49:51

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, Jina Dev Bot, 🙇

    🐞 Bug fixes

    • [e37cdba3] - cleanup all remote flows (#397) (Florian Hönicke)

    🍹 Other Improvements

    • [5d7aef3b] - Feat client (#395) (Florian Hönicke)
    • [97f34056] - version: the next version will be 0.0.26 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.25(Aug 24, 2022)

    Release Note (0.0.25)

    Release time: 2022-08-24 06:38:30

    🙇 We'd like to thank all contributors for this new release! In particular, joschkabraun, Jina Dev Bot, 🙇

    🐞 Bug fixes

    • [cd5a1b41] - manually set memory (#393) (joschkabraun)

    🍹 Other Improvements

    • [432cc37d] - version: the next version will be 0.0.25 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.24(Aug 23, 2022)

    Release Note (0.0.24)

    Release time: 2022-08-23 14:11:21

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, joschkabraun, Aziz Belaweid, Jina Dev Bot, 🙇

    🆕 New Features

    • [056cba77] - enable gpu (#383) (Aziz Belaweid)

    🐞 Bug fixes

    • [1c9cf0d5] - annlite-chunks: fixes search chunks (#389) (joschkabraun)
    • [e0f16857] - fix chunk level search annlite (#385) (joschkabraun)

    🍹 Other Improvements

    • [57bd1f0d] - Fix update docker call (#392) (Mohammad Kalim Akram)
    • [78fa06f8] - version: the next version will be 0.0.24 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.23(Aug 22, 2022)

    Release Note (0.0.23)

    Release time: 2022-08-22 11:52:31

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, joschkabraun, Mohammad Kalim Akram, Jina Dev Bot, 🙇

    🐞 Bug fixes

    • [3fbdc82a] - gif-app: fix set flow yaml (#380) (joschkabraun)
    • [d94823ba] - user issue path space (#378) (Florian Hönicke)
    • [81e6d262] - issue reported by user (#379) (Mohammad Kalim Akram)

    📗 Documentation

    • [c5f25255] - update app list (Florian Hönicke)

    🍹 Other Improvements

    • [fe5622a2] - Fix refined logging (#376) (Mohammad Kalim Akram)
    • [34eb1c19] - version: the next version will be 0.0.23 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.22(Aug 19, 2022)

    Release Note (0.0.22)

    Release time: 2022-08-19 13:19:56

    🙇 We'd like to thank all contributors for this new release! In particular, Jina Dev Bot, 🙇

    🍹 Other Improvements

    • [1ac11474] - version: the next version will be 0.0.22 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.21(Aug 19, 2022)

    Release Note (0.0.21)

    Release time: 2022-08-19 12:37:29

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Florian Hönicke, joschkabraun, Jina Dev Bot, 🙇

    🆕 New Features

    • [2b227de5] - improve-gif: improves gif search by adjusting preprocess and clip (#368) (joschkabraun)
    • [3c880c4f] - add api key to bff requests (#363) (Florian Hönicke)
    • [9ad9e4bb] - error handling in bff (#365) (Florian Hönicke)
    • [eb2efd69] - api key (#361) (Florian Hönicke)

    🐞 Bug fixes

    • [7d8763f0] - use lru cache to spped up (#364) (Mohammad Kalim Akram)

    🧼 Code Refactoring

    • [b35a8c78] - merge main (#371) (Florian Hönicke)
    • [13923bf5] - finetune datasets (#370) (Florian Hönicke)
    • [7c7e3ea0] - boost cicd (#369) (Florian Hönicke)
    • [ffe23cc8] - bump auth executor version (#362) (Florian Hönicke)

    🍹 Other Improvements

    • [f336a539] - Update JCloud and use latest jina auth (#367) (Mohammad Kalim Akram)
    • [42ff2a6b] - version: the next version will be 0.0.21 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.20(Aug 17, 2022)

    Release Note (0.0.20)

    Release time: 2022-08-17 12:00:19

    🙇 We'd like to thank all contributors for this new release! In particular, Florian Hönicke, joschkabraun, Joschka Braun, Mohammad Kalim Akram, Jina Dev Bot, 🙇

    🆕 New Features

    • [a197b5f3] - client code to update emails (#346) (Florian Hönicke)
    • [36574b0b] - playground-s3: fix typo in backend (Joschka Braun)
    • [dd143c47] - playground-s3: fix using jwt in temp link (Joschka Braun)
    • [fc2d19df] - playground-s3: adds postprocessor, uri to for indexing in bff (#334) (joschkabraun)
    • [559122b6] - prepr-exec-ci: test gha (#331) (joschkabraun)

    🐞 Bug fixes

    • [5ef1d8c4] - bff path (#356) (Florian Hönicke)
    • [9f45ffb0] - user emails in bff (#349) (Florian Hönicke)
    • [be3dd8d5] - jwt-temp-link: fix jwt (#339) (joschkabraun)
    • [c2458892] - version hubble (#337) (Florian Hönicke)
    • [1b7f96b9] - remove getting all cookies (#333) (Mohammad Kalim Akram)

    🧼 Code Refactoring

    • [01a40d34] - security executor (#335) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [801c17ca] - add user email (#342) (Florian Hönicke)

    🍹 Other Improvements

    • [591906c0] - Fix preproc userinput (#341) (joschkabraun)
    • [7f631032] - version: the next version will be 0.0.20 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.19(Aug 8, 2022)

    Release Note (0.0.19)

    Release time: 2022-08-08 05:01:15

    🙇 We'd like to thank all contributors for this new release! In particular, dependabot[bot], joschkabraun, Mohammad Kalim Akram, Jina Dev Bot, 🙇

    🆕 New Features

    • [56142b27] - add playground login (#311) (Mohammad Kalim Akram)

    🍹 Other Improvements

    • [cea2d98e] - deps: bump streamlit from 1.5.0 to 1.11.1 in /now/data_loading (#328) (dependabot[bot])
    • [fc40ac2f] - Feat add preprocess executor (#323) (joschkabraun)
    • [a5a5fc91] - version: the next version will be 0.0.19 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.18(Aug 2, 2022)

    Release Note (0.0.18)

    Release time: 2022-08-02 11:04:03

    🙇 We'd like to thank all contributors for this new release! In particular, joschkabraun, Sebastian Lettner, Florian Hönicke, Jina Dev Bot, 🙇

    🆕 New Features

    • [35a8b832] - refactor fine-tune logic (#314) (joschkabraun)
    • [d151d8d0] - integrate finetuner client (#278) (Sebastian Lettner)
    • [d76f4ea9] - list all wolf deployments (#305) (joschkabraun)
    • [75bfd27e] - dyn requ size and prefetch (#308) (Florian Hönicke)
    • [1ada1a89] - app: add docker mem limit (#258) (Sebastian Lettner)
    • [d1d64ebd] - upgrade jcloud version (#306) (Florian Hönicke)

    🐞 Bug fixes

    • [98225c0e] - cd: add wolf token (joschkabraun)
    • [b3eeaca6] - playground (#309) (Florian Hönicke)
    • [cb2a7d58] - video (#302) (Florian Hönicke)

    🍹 Other Improvements

    • [70d58e5c] - Load from S3 Bucket (#318) (joschkabraun)
    • [3f53da62] - Refactor playground (#300) (Florian Hönicke)
    • [94da8e4d] - version: the next version will be 0.0.18 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.17(Jul 7, 2022)

    Release Note (0.0.17)

    Release time: 2022-07-07 08:01:34

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Zac Li, Florian Hönicke, Winston Wong, Jina Dev Bot, 🙇

    🆕 New Features

    • [1a688490] - enable monitoring for flow-clip (#297) (Zac Li)
    • [e79e1671] - docs: add qabot to jina now docs (#292) (Winston Wong)

    🐞 Bug fixes

    • [bf0fe0c0] - the uri loading (#298) (Mohammad Kalim Akram)
    • [a85bfff5] - reduce request_size (#290) (Florian Hönicke)

    🍹 Other Improvements

    • [f8c20e7a] - Fix update flow retention (#296) (Mohammad Kalim Akram)
    • [ca5d84e2] - version: the next version will be 0.0.17 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.16(Jun 30, 2022)

    Release Note (0.0.16)

    Release time: 2022-06-30 17:17:00

    🙇 We'd like to thank all contributors for this new release! In particular, Sebastian Lettner, Jina Dev Bot, 🙇

    🍹 Other Improvements

    • [b35d903e] - update and release music (#291) (Sebastian Lettner)
    • [98d1ec05] - version: the next version will be 0.0.16 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.15(Jun 30, 2022)

    Release Note (0.0.15)

    Release time: 2022-06-30 12:18:41

    🙇 We'd like to thank all contributors for this new release! In particular, joschkabraun, Florian Hönicke, Florian Hönicke, Sebastian Lettner, Jina Dev Bot, 🙇

    🆕 New Features

    • [366134e3] - add tracking (#268) (joschkabraun)
    • [a517c662] - bump jina version (#281) (Florian Hönicke)
    • [a3a55b63] - use msmarco-distilbert-base-v4 for text-to-text search (#271) (joschkabraun)
    • [f2a97c4b] - log version (#279) (Florian Hönicke)
    • [16edb976] - return value for deployment (#270) (Florian Hönicke)
    • [3fc9064a] - datasource: add demo datasets to apps (#273) (Sebastian Lettner)

    🐞 Bug fixes

    • [b63ddb4a] - spinner (Florian Hönicke)
    • [1f8cd409] - setup returns empty dict (#285) (Florian Hönicke)
    • [7852e5f8] - progress bar (#287) (Florian Hönicke)

    🧼 Code Refactoring

    • [8273a0a1] - no on demand (#282) (Florian Hönicke)

    🏁 Unit Test and CICD

    • [d9b4cd2b] - jcloud debug (#284) (Florian Hönicke)

    🍹 Other Improvements

    • [0f76cc72] - Feat video search (#286) (Florian Hönicke)
    • [bafa1077] - version: the next version will be 0.0.15 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.14(Jun 23, 2022)

    Release Note (0.0.14)

    Release time: 2022-06-23 12:45:01

    🙇 We'd like to thank all contributors for this new release! In particular, Mohammad Kalim Akram, Florian Hönicke, Jina Dev Bot, 🙇

    🐞 Bug fixes

    • [aefc30a9] - update version (#276) (Mohammad Kalim Akram)

    🏁 Unit Test and CICD

    • [878e26c6] - balance (#275) (Florian Hönicke)

    🍹 Other Improvements

    • [02311a24] - version: the next version will be 0.0.14 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
  • v0.0.13(Jun 23, 2022)

    Release Note (0.0.13)

    Release time: 2022-06-23 08:20:59

    🙇 We'd like to thank all contributors for this new release! In particular, Jina Dev Bot, 🙇

    🍹 Other Improvements

    • [2177b9f8] - version: the next version will be 0.0.13 (Jina Dev Bot)
    Source code(tar.gz)
    Source code(zip)
Owner
Jina AI
A Neural Search Company. We help businesses and developers to build neural search-powered applications in minutes.
Jina AI
Examples of how to create colorful, annotated equations in Latex using Tikz.

The file "eqn_annotate.tex" is the main latex file. This repository provides four examples of annotated equations: [example_prob.tex] A simple one ins

SyNeRCyS Research Lab 3.2k Jan 05, 2023
A2LP for short, ECCV2020 spotlight, Investigating SSL principles for UDA problems

Label-Propagation-with-Augmented-Anchors (A2LP) Official codes of the ECCV2020 spotlight (label propagation with augmented anchors: a simple semi-supe

20 Oct 27, 2022
Python Classes: Medical Insurance Project using Object Oriented Programming Concepts

Medical-Insurance-Project-OOP Python Classes: Medical Insurance Project using Object Oriented Programming Concepts Classes are an incredibly useful pr

Hugo B. 0 Feb 04, 2022
Telegram chatbot created with deep learning model (LSTM) and telebot library.

Telegram chatbot Telegram chatbot created with deep learning model (LSTM) and telebot library. Description This program will allow you to create very

1 Jan 04, 2022
Detection of drones using their thermal signatures from thermal camera through YOLO-V3 based CNN with modifications to encapsulate drone motion

Drone Detection using Thermal Signature This repository highlights the work for night-time drone detection using a using an Optris PI Lightweight ther

Chong Yu Quan 6 Dec 31, 2022
Learning to Reconstruct 3D Non-Cuboid Room Layout from a Single RGB Image

NonCuboidRoom Paper Learning to Reconstruct 3D Non-Cuboid Room Layout from a Single RGB Image Cheng Yang*, Jia Zheng*, Xili Dai, Rui Tang, Yi Ma, Xiao

67 Dec 15, 2022
Google AI Open Images - Object Detection Track: Open Solution

Google AI Open Images - Object Detection Track: Open Solution This is an open solution to the Google AI Open Images - Object Detection Track 😃 More c

minerva.ml 46 Jun 22, 2022
GRaNDPapA: Generator of Rad Names from Decent Paper Acronyms

GRaNDPapA: Generator of Rad Names from Decent Paper Acronyms Trying to publish a new machine learning model and can't write a decent title for your pa

264 Nov 08, 2022
用opencv的dnn模块做yolov5目标检测,包含C++和Python两个版本的程序

yolov5-dnn-cpp-py yolov5s,yolov5l,yolov5m,yolov5x的onnx文件在百度云盘下载, 链接:https://pan.baidu.com/s/1d67LUlOoPFQy0MV39gpJiw 提取码:bayj python版本的主程序是main_yolov5.

365 Jan 04, 2023
A library for preparing, training, and evaluating scalable deep learning hybrid recommender systems using PyTorch.

collie Collie is a library for preparing, training, and evaluating implicit deep learning hybrid recommender systems, named after the Border Collie do

ShopRunner 96 Dec 29, 2022
Source code for our paper "Empathetic Response Generation with State Management"

Source code for our paper "Empathetic Response Generation with State Management" this repository is maintained by both Jun Gao and Yuhan Liu Model Ove

Yuhan Liu 3 Oct 08, 2022
This is a model made out of Neural Network specifically a Convolutional Neural Network model

This is a model made out of Neural Network specifically a Convolutional Neural Network model. This was done with a pre-built dataset from the tensorflow and keras packages. There are other alternativ

9 Oct 18, 2022
Code for Boundary-Aware Segmentation Network for Mobile and Web Applications

BASNet Boundary-Aware Segmentation Network for Mobile and Web Applications This repository contain implementation of BASNet in tensorflow/keras. comme

Hamid Ali 8 Nov 24, 2022
This repository contains the scripts for downloading and validating scripts for the documents

HC4: HLTCOE CLIR Common-Crawl Collection This repository contains the scripts for downloading and validating scripts for the documents. Document ids,

JHU Human Language Technology Center of Excellence 6 Jun 07, 2022
Pytorch implementation of Integrating Tree Path in Transformer for Code Representation

This is an official Pytorch implementation of the approaches proposed in: Han Peng, Ge Li, Wenhan Wang, Yunfei Zhao, Zhi Jin “Integrating Tree Path in

Han Peng 16 Dec 23, 2022
A library to inspect itermediate layers of PyTorch models.

A library to inspect itermediate layers of PyTorch models. Why? It's often the case that we want to inspect intermediate layers of a model without mod

archinet.ai 380 Dec 28, 2022
[NeurIPS 2021] Galerkin Transformer: a linear attention without softmax

[NeurIPS 2021] Galerkin Transformer: linear attention without softmax Summary A non-numerical analyst oriented explanation on Toward Data Science abou

Shuhao Cao 159 Dec 20, 2022
Py4fi2nd - Jupyter Notebooks and code for Python for Finance (2nd ed., O'Reilly) by Yves Hilpisch.

Python for Finance (2nd ed., O'Reilly) This repository provides all Python codes and Jupyter Notebooks of the book Python for Finance -- Mastering Dat

Yves Hilpisch 1k Jan 05, 2023
Swapping face using Face Mesh with TensorFlow Lite

Swapping face using Face Mesh with TensorFlow Lite

iwatake 17 Apr 26, 2022
A PyTorch implementation of DenseNet.

A PyTorch Implementation of DenseNet This is a PyTorch implementation of the DenseNet-BC architecture as described in the paper Densely Connected Conv

Brandon Amos 771 Dec 15, 2022