{"id":22185723,"url":"https://github.com/thangtran3112/machine-learning","last_synced_at":"2026-02-15T10:37:12.650Z","repository":{"id":264117155,"uuid":"892408025","full_name":"thangtran3112/machine-learning","owner":"thangtran3112","description":"NLP, Neural networks, pytorch, tensorflow, AWS Sagemaker fine-tuning","archived":false,"fork":false,"pushed_at":"2025-03-16T20:10:49.000Z","size":204031,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-05T18:42:04.528Z","etag":null,"topics":["artificial-neural-networks","aws-bedrock","aws-sagemaker","gensim","gru-neural-networks","keras","lemmatization","lstm-neural-networks","nltk","numpy","one-hot-encoding","pandas","python","recurrent-neural-network","scikit-learn","tensorflow","tfidf-vectorizer","word2vec"],"latest_commit_sha":null,"homepage":"https://movie-review-sentiment-rnn.streamlit.app","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thangtran3112.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-22T03:49:56.000Z","updated_at":"2025-03-16T20:12:29.000Z","dependencies_parsed_at":"2025-03-16T21:36:36.037Z","dependency_job_id":null,"html_url":"https://github.com/thangtran3112/machine-learning","commit_stats":null,"previous_names":["thangtran3112/machine-learning"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thangtran3112/machine-learning","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thangtran3112%2Fmachine-learning","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thangtran3112%2Fmachine-learning/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thangtran3112%2Fmachine-learning/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thangtran3112%2Fmachine-learning/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thangtran3112","download_url":"https://codeload.github.com/thangtran3112/machine-learning/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thangtran3112%2Fmachine-learning/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29475777,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T10:25:47.032Z","status":"ssl_error","status_checked_at":"2026-02-15T10:25:01.815Z","response_time":118,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["artificial-neural-networks","aws-bedrock","aws-sagemaker","gensim","gru-neural-networks","keras","lemmatization","lstm-neural-networks","nltk","numpy","one-hot-encoding","pandas","python","recurrent-neural-network","scikit-learn","tensorflow","tfidf-vectorizer","word2vec"],"created_at":"2024-12-02T10:16:58.798Z","updated_at":"2026-02-15T10:37:12.637Z","avatar_url":"https://github.com/thangtran3112.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# machine-learning\n\n## Initializations\n\n```bash\n    conda create -p venv python=3.12\n    conda activate venv/\n```\n\n## Tokenization\n\n- Paragraph to sentences (Tokenization into sentence)\n- Sentence to words/vocabolary (Tokenization into words)\n\n## NLTK (Tokenization library)\n\n- Alternative: `spacy`\n\n```bash\n  pip install ntlk\n  pip install numpy\n```\n\n- Or install those libraries, just for the Conda environment:\n\n```bash\n  conda install -p venv/ nltk\n  conda install -p venv/ numpy\n```\n\n- [Install skykit-learn](https://scikit-learn.org/stable/install.html). This may install dependency from `numpy` and `scipy`\n\n```bash\n  conda uninstall numpy # just in case\n  conda install -c conda-forge scikit-learn\n```\n\n- Or install with `pip` under conda environment. If there is stack error, uninstall `numpy`\n\n```bash\n  pip unstall numpy\n  pip install --force-reinstall scikit-learn\n```\n\n- One time action to download punkt_tab, in python code:\n\n```python\n  import nltk\n  nltk.download('punkt')  # Download the tokenizer models\n\n  from nltk.tokenize import word_tokenize, sent_tokenize\n\n  text = \"Hello, world! This is NLTK's tokenizer.\"\n  words = word_tokenize(text)  # Tokenizes into words\n  sentences = sent_tokenize(text)  # Tokenizes into sentences\n```\n\n### Lemmatization\n\n- Require to download: nltk.download('wordnet')\n\n```python\n  nltk.download('wordnet')\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthangtran3112%2Fmachine-learning","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthangtran3112%2Fmachine-learning","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthangtran3112%2Fmachine-learning/lists"}