datitran's comments

datitran | 1 year ago | on: LegalLint – Your Drafting Copilot for Legal Documents

hey guys I just launched my add-in called LegalLint. LegalLint is a Word add-in designed to make life easier for legal professionals and anyone working with large Word documents by streamlining formatting tasks. Please check us out. It's free for now. At some point I will also include some pricing but it will stay pretty much affordable, most likely as cheap as a buy me a coffee per month hehe

datitran | 3 years ago | on: Priceloop NoCode Spreadsheet platform built in Scala and on-top of Postgres

hey yodon, valid feedback. And yes we are building a very general cloud-based spreadsheet that supports large datasets and extensible Python functions. As a young company, we need to focus though and we chose pricing as our first domain as my co-founder has extensive domain knowledge in this area. Our vision is to open it up and therefore I can understand that our website currently is not sexy enough but we are working on it :) At the end it's the product and tech that counts to us and I believe we are building something nice here and hope to get as much feedback as possible from people using it!

datitran | 4 years ago | on: Ask HN: Who is hiring? (February 2022)

Priceloop.ai | Full-stack Scala software engineer | Mid-Senior | competitive compensation with ESOP | Berlin, Germany but we are also open to fully remote

At priceloop, we are working on a completely novel way of how businesses can run their pricing. Like really really novel. Not just another AI model for pricing. We strive to redefine this software category.

That's why we're looking for full-stack Scala software engineers to build our no-code pricing platform. The team is small but experienced. We also love open-source, in fact some of us are maintainers and contributors of some well-known projects such as outwatch, a functional and reactive web-frontend library for ScalaJS. Once we developed the core platform, we are also planing to open-source it. Our tech stack is Postgres, Docker, Kubernetes and we deploy on AWS.

More details here: https://priceloopai.notion.site/Working-at-Priceloop-ed8b442...

datitran | 5 years ago | on: TransformerTTS: A Text-to-Speech Transformer in TensorFlow 2

We've just open-sourced our implementation of TransformerTTS: a Text-to-Speech Transformer. It's based on a Microsoft paper: Neural Speech Synthesis with Transformer Network. It's written in TensorFlow 2 and uses all its cool features.

The best thing on our implementation though is that you can easily use the WaveRNN Vocoder to generate human-level synthesis. We also provide samples and a Colab notebook. Make sure to check it out and please star ⭐️ the repo and share it! We're already working on the Forward version of TransformerTTS and we'll release it soon as well.

- Samples: https://as-ideas.github.io/TransformerTTS/

- Github: https://github.com/as-ideas/TransformerTTS

- Colab notebook: https://colab.research.google.com/github/as-ideas/Transforme...

datitran | 6 years ago | on: ForwardTacotron – Generating speech without attention

We've just open-sourced our first text-to-speech project! It's also our first public PyTorch project. Inspired by Microsoft's FastSpeech, we modified Tacotron (Fork from fatchord's WaveRNN) to generate speech in a single forward pass without using any attention. Hence, we call the model ⏩ ForwardTacotron.

The model has several advantages:

* Robustness: No repeats and failed attention modes for complex sentences

* Speed: Generating a spectrogram takes about 0.04s on a RTX2080

* Controllability: You can control the speed of the speech synthesis

️* Efficiency: No usage of attention so memory size grows linearly with text size

We also provide a Colab notebook to try out our pre-trained model trained 100k steps on LJSpeech and also some Samples. Check it out!

* Github: https://github.com/as-ideas/ForwardTacotron

* Samples: https://as-ideas.github.io/ForwardTacotron/

* Colab notebook: https://colab.research.google.com/github/as-ideas/ForwardTac...

datitran | 6 years ago | on: Generating headlines from news articles using SOTA summarizer based on BERT

Hey my team mate Dr. Christian Schäfer and me just published a blog article about our library "Headliner" where we discuss why we decided to create it and also how we use it internally at Axel Springer. The coolest part is that we integrated BertSum, a SOTA summarizer based on finetuning pre-trained BERT language models, into our library. We also speak a little bit about TensorFlow 2.x and why we used it. Check it out if you're interested. We would love people trying out our library for their text summarization problems.

datitran | 6 years ago | on: Headliner – Easy training and deployment of seq2seq models

We've just open-sourced our library headliner which is a sequence modeling library that eases the training and in particular, the deployment of custom sequence models. It was originally built for our own research at Axel Springer AI to generate headlines from Welt news articles. That's why we chose the name, Headliner. Although this library was created internally to generate headlines, you can also use it for other tasks like machine translations, text summarization and many more.

We built this library with the following goals in mind. Firstly, it offers a simple API for training and deployment of models (only a few lines of code). Secondly, it uses TensorFlow 2.0 with all its new features. Thirdly, it has modular classes: text preprocessing, modeling, evaluation and is easily extensible for new models and finally works well on large text data.

Headliner is our first NLP project that we open-sourced and we're happy about this. Please try out our library, star it on Github and spread the word! We'd love to get feedback.

datitran | 6 years ago | on: Show HN: Imagededup – Finding duplicate images made easy

Yes, before developing the package, we were also using this great library for hash generation. There are a bunch of differences we have compared to imagehash: 1. Added CNN as you mentioned 2. Took care of housekeeping functions like efficient retrieval (using bktree, also parallelized) 3. Added plotting abilities for visualizing duplicates 4. Added possibilities to do evaluation of deduplication algorithm so that the user can judge the deduplication performance on a custom dataset (with classification and information retrieval metrics) 5. Allow possibility to change thresholds to better capture the idea of 'duplicate' for specific user cases

datitran | 6 years ago | on: Show HN: Imagededup – Finding duplicate images made easy

We've just open-sourced our library imagededup, a Python package that simplifies the task of finding exact and near duplicates in an image collection.

It includes several hashing algorithms (PHash, DHash etc) and convolutional neural networks. Secondly, an evaluation framework to judge the quality of deduplication. Finally easy plotting functionality of duplicates and a simple API.

We're really excited about this library because finding image duplication is a very important task in computer vision and machine learning. For example, severe duplicates can create extreme biases in your evaluation of your ML model (check out the CIFAR-10 problem). Please try out our library, star it on Github and spread the word! We'd love to get feedback.

datitran | 7 years ago | on: Zoom in enhance: a Deep Learning based magnifying glass (part 2)

We just released a major update of our Keras based image super resolution project. Now you can super-scale your images and run experiments very easily with RDNs and GANs.

In particular,

⭐️ We've added some new cool stuff like VGG deep features + GANs to achieve amazingly realistic upscaled images

⭐️ We provide a few more pre-trained weights as well as some Colab-notebook tutorials to play around

⭐️ And the best thing our project is now available on PyPI! So you can just pip install your way to our project

If you want to know all details and results of the new update, check out our new blog post and also have a look at the documentation.

- Blog: https://medium.com/idealo-tech-blog/zoom-in-enhance-a-deep-l...

- Documentation: https://idealo.github.io/image-super-resolution/

- Github: https://github.com/idealo/image-super-resolution/

- Colab (prediction): https://colab.research.google.com/github/idealo/image-super-...

- Colab (training): https://colab.research.google.com/github/idealo/image-super-...

page 1