Giter Site home page Giter Site logo

hootmentor's Introduction

Hi there ๐Ÿ‘‹

Welcome to my profile!

  • ๐Ÿ’ป In the past, I was a software/developer engineer at Klipfolio, Hoppier, RBC Amplify, Unity, and RBC X where I primarily worked in full-stack development, while also venturing into Data Analytics, SRE, and Project Management.
  • ๐Ÿ›  I'm currently a Software Developer at CrowdStrike within the Charts and UX team.
  • ๐ŸŒฑ Previously, I was learning how to build Real-time collaboration apps by creating a music collaboration site for my honors project supervised under Lou D. Nel

hootmentor's People

Contributors

jqwotos avatar p-sun avatar riotpiaole avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

hootmentor's Issues

possible backend in go

Possibly in the future, we can convert the backend system to go lang for scalability and then just bridge back to python for tensorflow.

better training data

As discussed in #1 we should improve the training data so it's more suited to providing useful data back to the user.

  1. Gather more relevant training data
  2. Manually find some keywords such as ["income", "salary'], etc.. for different cases.
  3. Using thesaurus scraper, gather more keywords based on manual keywords (and possibly just recursively do this to multiple levels)
  4. Format the output sentences so the bot spits out tags in sentences.
  5. Parse bot output tags into useable information.

This would allow the bot not just chat but also still be able to be useful in providing information and not just a small chatbot.

Keeping up with the TF.__newest__version Loop function needed

A future enhancement for adding new loop function replace line 99 to 121 as
shell Tensor is no longer iterable
IE:

            ##############################  Encoding Stage ####
            for i in range(0, self.n_encode_lstm_step):
                if i > 0:
                    tf.get_variable_scope().reuse_variables()

                with tf.variable_scope("LSTM1"):
                    output1, state1 = self.lstm1(wordvec_emb[:, i, :], state1)

                with tf.variable_scope("LSTM2"):
                    output2, state2 = self.lstm2(tf.concat([padding, output1], 1), state2)

            ############################# Decoding Stage ####
            for i in range(0, self.n_decode_lstm_step):
                with tf.device("/cpu:0"):
                    current_embed = tf.nn.embedding_lookup(self.Wemb, caption[:, i])

                tf.get_variable_scope().reuse_variables()

                with tf.variable_scope("LSTM1"):
                    output1, state1 = self.lstm1(padding, state1)

                with tf.variable_scope("LSTM2"):
                    output2, state2 = self.lstm2(tf.concat([current_embed, output1], 1), state2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.