https://github.com/olekscode/suggestingnamesexperiment
Suggesting method names using TF-IDF and n-grams model
https://github.com/olekscode/suggestingnamesexperiment
Last synced: 3 months ago
JSON representation
Suggesting method names using TF-IDF and n-grams model
- Host: GitHub
- URL: https://github.com/olekscode/suggestingnamesexperiment
- Owner: olekscode
- License: mit
- Created: 2020-01-08T10:11:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-17T15:33:27.000Z (over 5 years ago)
- Last Synced: 2025-02-11T11:41:25.005Z (5 months ago)
- Language: Smalltalk
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SuggestingNamesExperiment
Suggesting method names using TF-IDF and n-grams model## How to install it?
To install `SuggestingNamesExperiment`, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
```Smalltalk
Metacello new
baseline: 'SuggestingNamesExperiment';
repository: 'github://olekscode/SuggestingNamesExperiment/src';
load.
```