diff --git a/spaces/101-5/gpt4free/g4f/.v1/testing/you_test.py b/spaces/101-5/gpt4free/g4f/.v1/testing/you_test.py deleted file mode 100644 index 1e9f620507a3bb4ff5e546cf693cfe3764ac437f..0000000000000000000000000000000000000000 --- a/spaces/101-5/gpt4free/g4f/.v1/testing/you_test.py +++ /dev/null @@ -1,27 +0,0 @@ -from gpt4free import you - -# simple request with links and details -response = you.Completion.create(prompt="hello world", detailed=True, include_links=True) - -print(response) - -# { -# "response": "...", -# "links": [...], -# "extra": {...}, -# "slots": {...} -# } -# } - -# chatbot - -chat = [] - -while True: - prompt = input("You: ") - - response = you.Completion.create(prompt=prompt, chat=chat) - - print("Bot:", response.text) - - chat.append({"question": prompt, "answer": response.text}) diff --git a/spaces/101-5/gpt4free/g4f/Provider/Providers/Liaobots.py b/spaces/101-5/gpt4free/g4f/Provider/Providers/Liaobots.py deleted file mode 100644 index 76b13c31924b443423c8376f1b0082e2f900a0b7..0000000000000000000000000000000000000000 --- a/spaces/101-5/gpt4free/g4f/Provider/Providers/Liaobots.py +++ /dev/null @@ -1,52 +0,0 @@ -import os, uuid, requests -from ...typing import sha256, Dict, get_type_hints - -url = 'https://liaobots.com' -model = ['gpt-3.5-turbo', 'gpt-4'] -supports_stream = True -needs_auth = True - -models = { - 'gpt-4': { - "id":"gpt-4", - "name":"GPT-4", - "maxLength":24000, - "tokenLimit":8000 - }, - 'gpt-3.5-turbo': { - "id":"gpt-3.5-turbo", - "name":"GPT-3.5", - "maxLength":12000, - "tokenLimit":4000 - }, -} - -def _create_completion(model: str, messages: list, stream: bool, **kwargs): - - print(kwargs) - - headers = { - 'authority': 'liaobots.com', - 'content-type': 'application/json', - 'origin': 'https://liaobots.com', - 'referer': 'https://liaobots.com/', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', - 'x-auth-code': kwargs.get('auth') - } - - json_data = { - 'conversationId': str(uuid.uuid4()), - 'model': models[model], - 'messages': messages, - 'key': '', - 'prompt': "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.", - } - - response = requests.post('https://liaobots.com/api/chat', - headers=headers, json=json_data, stream=True) - - for token in response.iter_content(chunk_size=2046): - yield (token.decode('utf-8')) - -params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \ - '(%s)' % ', '.join([f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]]) \ No newline at end of file diff --git a/spaces/17TheWord/RealESRGAN/scripts/generate_meta_info_pairdata.py b/spaces/17TheWord/RealESRGAN/scripts/generate_meta_info_pairdata.py deleted file mode 100644 index 76dce7e41c803a8055f3627cccb98deb51419b09..0000000000000000000000000000000000000000 --- a/spaces/17TheWord/RealESRGAN/scripts/generate_meta_info_pairdata.py +++ /dev/null @@ -1,49 +0,0 @@ -import argparse -import glob -import os - - -def main(args): - txt_file = open(args.meta_info, 'w') - # sca images - img_paths_gt = sorted(glob.glob(os.path.join(args.input[0], '*'))) - img_paths_lq = sorted(glob.glob(os.path.join(args.input[1], '*'))) - - assert len(img_paths_gt) == len(img_paths_lq), ('GT folder and LQ folder should have the same length, but got ' - f'{len(img_paths_gt)} and {len(img_paths_lq)}.') - - for img_path_gt, img_path_lq in zip(img_paths_gt, img_paths_lq): - # get the relative paths - img_name_gt = os.path.relpath(img_path_gt, args.root[0]) - img_name_lq = os.path.relpath(img_path_lq, args.root[1]) - print(f'{img_name_gt}, {img_name_lq}') - txt_file.write(f'{img_name_gt}, {img_name_lq}\n') - - -if __name__ == '__main__': - """This script is used to generate meta info (txt file) for paired images. - """ - parser = argparse.ArgumentParser() - parser.add_argument( - '--input', - nargs='+', - default=['datasets/DF2K/DIV2K_train_HR_sub', 'datasets/DF2K/DIV2K_train_LR_bicubic_X4_sub'], - help='Input folder, should be [gt_folder, lq_folder]') - parser.add_argument('--root', nargs='+', default=[None, None], help='Folder root, will use the ') - parser.add_argument( - '--meta_info', - type=str, - default='datasets/DF2K/meta_info/meta_info_DIV2K_sub_pair.txt', - help='txt path for meta info') - args = parser.parse_args() - - assert len(args.input) == 2, 'Input folder should have two elements: gt folder and lq folder' - assert len(args.root) == 2, 'Root path should have two elements: root for gt folder and lq folder' - os.makedirs(os.path.dirname(args.meta_info), exist_ok=True) - for i in range(2): - if args.input[i].endswith('/'): - args.input[i] = args.input[i][:-1] - if args.root[i] is None: - args.root[i] = os.path.dirname(args.input[i]) - - main(args) diff --git a/spaces/1gistliPinn/ChatGPT4/Examples/Arc2earth Free Download.md b/spaces/1gistliPinn/ChatGPT4/Examples/Arc2earth Free Download.md deleted file mode 100644 index 5656358104c99f93c5ef50b8b758d0f1f850a0b3..0000000000000000000000000000000000000000 --- a/spaces/1gistliPinn/ChatGPT4/Examples/Arc2earth Free Download.md +++ /dev/null @@ -1,6 +0,0 @@ -

arc2earth Free Download


DOWNLOAD 🆗 https://imgfil.com/2uxZFK



- -Download Arc2Earth for free. Arc2Earth is the premier ArcGIS extension for exporting and importing your data into the leading GeoWeb formats. 1fdad05405
-
-
-

diff --git a/spaces/1gistliPinn/ChatGPT4/Examples/Cultural History Of India By Om Prakash Pdf 22.md b/spaces/1gistliPinn/ChatGPT4/Examples/Cultural History Of India By Om Prakash Pdf 22.md deleted file mode 100644 index 9a474b9bf5af06828bea5f15c724e65cf48496e6..0000000000000000000000000000000000000000 --- a/spaces/1gistliPinn/ChatGPT4/Examples/Cultural History Of India By Om Prakash Pdf 22.md +++ /dev/null @@ -1,70 +0,0 @@ -
-

Cultural History Of India By Om Prakash Pdf 22: A Book Review

- -

Cultural History Of India By Om Prakash Pdf 22 is a book that explores the various aspects of development of Indian culture from ancient times to the present day. It is written by Om Prakash, a renowned historian and professor of history at Delhi University. The book is divided into three parts, each dealing with a different theme: religion, art, and social institutions.

-

Cultural History Of India By Om Prakash Pdf 22


DOWNLOAD ✦✦✦ https://imgfil.com/2uy263



- -

The book is based on extensive research and analysis of primary and secondary sources, such as literary texts, inscriptions, coins, sculptures, paintings, monuments, etc. It also draws on the works of other eminent scholars and experts in the field of Indian history and culture. The book is written in a clear and lucid style, with ample illustrations and examples to support the arguments and facts. The book also provides a bibliography and an index for further reference.

- -

Cultural History Of India By Om Prakash Pdf 22 is an extremely useful and informative book for anyone who is interested in learning about the rich and diverse cultural heritage of India. It covers a wide range of topics and issues, such as the Vedic religion, Buddhism, Jainism, Saivism, Vaisnavism, Islam, Sikhism, Christianity, composite culture, art and architecture, social institutions, education, economy, food and drinks, etc. It also traces the historical evolution and transformation of these aspects over time and space.

- -

The book is not only a scholarly work but also a fascinating and engaging read that captures the essence and spirit of Indian culture. It shows how Indian culture has been shaped by various influences and factors, such as geography, environment, ethnicity, language, politics, trade, etc. It also shows how Indian culture has contributed to the world civilization and culture in various ways.

- -

Cultural History Of India By Om Prakash Pdf 22 is therefore a must-read for all students, teachers, researchers, and enthusiasts of Indian history and culture. It is also a valuable resource for anyone who wants to understand the roots and identity of India as a nation and a civilization.

- -

How to Download Cultural History Of India By Om Prakash Pdf 22?

- -

If you want to download Cultural History Of India By Om Prakash Pdf 22 on your device, you can use our guide to find the best sources and methods for doing so. Remember to always use a VPN when downloading books online and check the reviews and ratings of the files before using them.

- -

One of the best ways to download Cultural History Of India By Om Prakash Pdf 22 is to use Google Books. Google Books is a service that allows you to search and preview millions of books from libraries and publishers worldwide. You can also download some books for free or buy them online.

-

- -

To download Cultural History Of India By Om Prakash Pdf 22 from Google Books , follow these steps:

- -
    -
  1. Go to https://books.google.com/books/about/Cultural_History_of_India.html?id=nzpYb5UOeiwC on your browser.
  2. -
  3. Click on the "EBOOK - FREE" button on the top right corner of the page.
  4. -
  5. Select your preferred format from the list (PDF or EPUB).
  6. -
  7. Click on "Download" button and wait for the file to download on your device.
  8. -
  9. Enjoy reading Cultural History Of India By Om Prakash Pdf 22 on your device.
  10. -
- -

How to Read Cultural History Of India By Om Prakash Pdf 22?

- -

If you don't want to download Cultural History Of India By Om Prakash Pdf 22 on your device , you can also read it online using Google Books . Google Books allows you to read books online without downloading them . You can also access them using your browser or an app on your device .

- -

To read Cultural History Of India By Om Prakash Pdf 22 online from Google Books , follow these steps :

- -
    -
  1. Go to https://books.google.com/books/about/Cultural_History_of_India.html?id=nzpYb5UOeiwC on your browser .
  2. -
  3. Click on the "READ" button on the top right corner of the page .
  4. -
  5. Wait for the book to load on your browser or choose "Open with" if you have an app that can read PDF or EPUB files on your device .
  6. -
  7. Enjoy reading Cultural History Of India By Om Prakash Pdf 22 online from Google Books .
  8. -
- -

Conclusion

- -

Cultural History Of India By Om Prakash Pdf 22 is a book that explores the various aspects of development of Indian culture from ancient times to the present day . It is written by Om Prakash , a renowned historian and professor of history at Delhi University . The book is divided into three parts , each dealing with a different theme : religion , art , and social institutions .

- -

The book is based on extensive research and analysis of primary and secondary sources , such as literary texts , inscriptions , coins , sculptures , paintings , monuments , etc . It also draws on the works of other eminent scholars and experts in the field of Indian history and culture . The book is written in a clear and lucid style , with ample illustrations and examples to support the arguments and facts . The book also provides a bibliography and an index for further reference .

- -

Cultural History Of India By Om Prakash Pdf 22 is an extremely useful and informative book for anyone who is interested in learning about the rich and diverse cultural heritage of India . It covers a wide range of topics and issues , such as the Vedic religion , Buddhism , Jainism , Saivism , Vaisnavism , Islam , Sikhism , Christianity , composite culture , art and architecture , social institutions , education , economy , food and drinks , etc . It also traces the historical evolution and transformation of these aspects over time and space .

- -

The book is not only a scholarly work but also a fascinating and engaging read that captures the essence and spirit of Indian culture . It shows how Indian culture has been shaped by various influences and factors , such as geography , environment , ethnicity , language , politics , trade , etc . It also shows how Indian culture has contributed to the world civilization and culture in various ways .

- -

Cultural History Of India By Om Prakash Pdf 22 is therefore a must-read for all students , teachers , researchers , and enthusiasts of Indian history and culture . It is also a valuable resource for anyone who wants to understand the roots and identity of India as a nation and a civilization .

- -

We hope you found this article helpful and informative . If you have any questions or feedback , feel free to leave a comment below . Thank you for reading !

-

Cultural History Of India By Om Prakash Pdf 22 is a book that explores the various aspects of development of Indian culture from ancient times to the present day. It is written by Om Prakash, a renowned historian and professor of history at Delhi University. The book is divided into three parts, each dealing with a different theme: religion, art, and social institutions.

- -

The book is based on extensive research and analysis of primary and secondary sources, such as literary texts, inscriptions, coins, sculptures, paintings, monuments, etc. It also draws on the works of other eminent scholars and experts in the field of Indian history and culture. The book is written in a clear and lucid style, with ample illustrations and examples to support the arguments and facts. The book also provides a bibliography and an index for further reference.

- -

Cultural History Of India By Om Prakash Pdf 22 is an extremely useful and informative book for anyone who is interested in learning about the rich and diverse cultural heritage of India. It covers a wide range of topics and issues, such as the Vedic religion, Buddhism, Jainism, Saivism, Vaisnavism, Islam, Sikhism, Christianity, composite culture, art and architecture, social institutions, education, economy, food and drinks, etc. It also traces the historical evolution and transformation of these aspects over time and space.

- -

The book is not only a scholarly work but also a fascinating and engaging read that captures the essence and spirit of Indian culture. It shows how Indian culture has been shaped by various influences and factors, such as geography, environment, ethnicity, language, politics, trade, etc. It also shows how Indian culture has contributed to the world civilization and culture in various ways.

- -

Cultural History Of India By Om Prakash Pdf 22 is therefore a must-read for all students, teachers, researchers, and enthusiasts of Indian history and culture. It is also a valuable resource for anyone who wants to understand the roots and identity of India as a nation and a civilization.

- -

We hope you found this article helpful and informative. If you have any questions or feedback, feel free to leave a comment below. Thank you for reading!

3cee63e6c2
-
-
\ No newline at end of file diff --git a/spaces/1phancelerku/anime-remove-background/Challenge Your Friends and Rivals with 8 Ball Pool APK.md b/spaces/1phancelerku/anime-remove-background/Challenge Your Friends and Rivals with 8 Ball Pool APK.md deleted file mode 100644 index a86969901bdd62299b15d815a0716edde8353f49..0000000000000000000000000000000000000000 --- a/spaces/1phancelerku/anime-remove-background/Challenge Your Friends and Rivals with 8 Ball Pool APK.md +++ /dev/null @@ -1,131 +0,0 @@ -
-

8 Ball Pool Apkpure: A Guide to Download and Play the World's Best Pool Game

-

If you are a fan of pool games, you might have heard of 8 Ball Pool, the world's most popular online multiplayer pool game. But did you know that you can also play it on your Windows PC with Apkpure, a website that provides free and safe Android apps and games? In this article, we will show you how to download and install 8 Ball Pool Apkpure on your PC, what are the features of this amazing game, what are the rules of playing it, and what are some tips and tricks to help you become a master of the pool.

-

What is 8 Ball Pool Apkpure?

-

A brief introduction to 8 Ball Pool, a popular online multiplayer pool game

-

8 Ball Pool is a game developed by Miniclip that allows you to play pool with players from all over the world. You can choose from different game modes, such as 1-on-1, Tournaments, 9-Ball, or Practice, and compete for coins, cash, trophies, and exclusive items. You can also customize your cue and pool table with various designs and colors. The game has a level system that matches you with players of similar skill level, and a ranking system that shows your progress in the global leaderboard.

-

8 ball pool apkpure


Download ✦✦✦ https://jinyurl.com/2uNOiv



-

A brief introduction to Apkpure, a website that provides free and safe Android apps and games

-

Apkpure is a website that offers a large collection of Android apps and games that you can download for free. You can find apps and games for various categories, such as Action, Puzzle, Sports, Casual, Educational, Music, Lifestyle, Social, etc. You can also search for specific apps or games by name or keyword. All the apps and games on Apkpure are verified by their team to ensure they are safe and virus-free.

-

How to download and install 8 Ball Ball Pool Apkpure on your Windows PC

-

To play 8 Ball Pool Apkpure on your Windows PC, you need to use an Android emulator, which is a software that allows you to run Android apps and games on your PC. There are many Android emulators available, but we recommend using Gameloop, which is the official emulator of Tencent Games, the publisher of 8 Ball Pool. Here are the steps to download and install 8 Ball Pool Apkpure on your PC with Gameloop:

-
    -
  1. Download and install Gameloop from its official website: https://gameloop.fun/
  2. -
  3. Launch Gameloop and click on the Game Center tab.
  4. -
  5. Search for 8 Ball Pool in the search bar and click on the Install button.
  6. -
  7. Wait for the game to download and install on your PC.
  8. -
  9. Click on the My Games tab and launch 8 Ball Pool from there.
  10. -
  11. Enjoy playing 8 Ball Pool Apkpure on your PC with a larger screen, better graphics, and smoother controls.
  12. -
-

What are the features of 8 Ball Pool Apkpure?

-

The benefits of playing 8 Ball Pool on your PC with Gameloop emulator

-

Playing 8 Ball Pool Apkpure on your PC with Gameloop emulator has many advantages over playing it on your mobile device. Here are some of them:

- -

The different game modes, tables, cues, and balls available in 8 Ball Pool

-

8 Ball Pool Apkpure offers a variety of game modes, tables, cues, and balls to suit your preferences and skill level. Here are some of them:

- - - - - - -
Game ModeDescription
1-on-1The classic mode where you play against another player in a single match. You can choose from different locations, such as London, Sydney, Moscow, Tokyo, Las Vegas, etc., each with a different entry fee and prize pool. You can also play in the No Guidelines mode where there are no aiming lines to help you.
TournamentsThe mode where you compete with up to 7 other players in a knockout format. You can choose from different tournaments, such as Cairo, Shanghai, Toronto, Berlin, etc., each with a different entry fee and prize pool. You can also play in the No Guidelines mode where there are no aiming lines to help you.
9-BallThe mode where you play with 9 balls instead of 15. The rules are different from 8 Ball: you have to hit the lowest numbered ball first, and the first player to pocket the 9 ball wins. You can also play in the No Guidelines mode where there are no aiming lines to help you.
PracticeThe mode where you can practice your skills without any pressure or opponents. You can choose from different tables and cues to practice with. You can also adjust the difficulty level of the game from Easy to Expert.
-

In addition to the game modes, you can also choose from different tables and cues to play with. Each table has a different design and color scheme, such as Wood Grain, Marble, Ice Blue, etc. Each cue has different attributes and effects, such as Aim, Force, Time, Spin, etc. You can also unlock special cues with unique features, such as Legendary Cues, VIP Cues, Country Cues, etc.

-

You can also choose from different balls to play with. Some of the balls have different colors and patterns, such as Stripes, Solids, Stars, etc. Some of the balls have special effects, such as Fireworks, Snowflakes, Lightning, etc. You can also unlock exclusive balls with unique features, such as Golden Shot Balls, Surprise Boxes Balls, Scratch and Win Balls, etc.

-

The customization options, rewards, and challenges in 8 Ball Pool Apkpure

-

8 Ball Pool Apkpure also allows you to customize your profile and avatar with various options. You can choose from different avatars, such as Animals, Sports, Celebrities, etc. You can also upload your own photo or use your Facebook profile picture. You can also edit your name, country, and status message.

-

8 ball pool apk download latest version
-8 ball pool mod apk unlimited coins and cash
-8 ball pool hack apk no root
-8 ball pool old version apk free download
-8 ball pool offline apk for android
-8 ball pool apk pure app store
-8 ball pool online multiplayer apk
-8 ball pool rewards apk download
-8 ball pool legendary cues mod apk
-8 ball pool guideline hack apk
-8 ball pool instant reward apk
-8 ball pool long line mod apk
-8 ball pool tool pro apk
-8 ball pool cheat engine apk
-8 ball pool generator apk no human verification
-8 ball pool unlimited money apk
-8 ball pool beta version apk download
-8 ball pool auto win mod apk
-8 ball pool aimbot apk download
-8 ball pool avatar hd apk
-8 ball pool all cues unlocked mod apk
-8 ball pool anti ban mod apk
-8 ball pool best mod apk download
-8 ball pool by miniclip apk download
-8 ball pool cracked version apk download
-8 ball pool coin hack apk download
-8 ball pool cue hack apk download
-8 ball pool cash hack apk download
-8 ball pool diamond cue mod apk download
-8 ball pool extended stick guideline mod apk download
-8 ball pool free coins and cash generator apk download
-8 ball pool free legendary cues mod apk download
-8 ball pool full unlocked mod apk download
-8 ball pool game guardian script hack apk download
-8 ball pool golden break mod apk download
-8 ball pool guideline tool pro modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool hack version unlimited money and cash apkpure.com[^1^]
-8 ball pool instant win modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool king cue modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool long line hack modded cracked patched unlocked premium full cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool mega mod unlimited everything apkpure.com[^1^]
-8 ball pool new update modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool old version modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool pro membership modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]
-8 ball pool quick fire mode modded cracked patched unlocked premium full hack cheat version app game android latest update free download install play online offline no root require apkpure.com[^1^]

-

As you play 8 Ball Pool Apkpure, you can also earn various rewards and complete various challenges. You can earn coins and cash by winning matches, tournaments, and mini-games. You can also earn trophies by ranking up in the leaderboard. You can also earn pool passes by completing daily missions and seasonal events. You can also earn free gifts by logging in daily, watching videos, inviting friends, etc.

-

You can also take on different challenges in 8 Ball Pool Apkpure to test your skills and win more rewards. You can play in the Spin and Win mini-game to win coins, cash, cues, balls, and other prizes. You can play in the Hi-Lo mini-game to guess the outcome of a coin toss and win coins. You can play in the Golden Shot mini-game to hit the golden ball and win coins, cash, cues, balls, and other prizes. You can also join the Clubs feature to create or join a club with other players and compete for club points and rewards.

-

What are the rules of 8 Ball Pool Apkpure?

-

The basic rules of 8 Ball Pool, such as legal break, object balls, pocketing the 8 ball, and fouls

-

The basic rules of 8 Ball Pool are simple and easy to learn. Here are some of them:

- -

The different variations of 8 Ball Pool rules, such as WPA, APA, VNEA, and BCAPL

-

While the basic rules of 8 Ball Pool are generally the same, there are some variations of the rules that are used by different organizations and tournaments. Here are some of them:

- -

The tips and tricks to improve your skills and win more matches in 8 Ball Pool Apkpure

-

8 Ball Pool Apkpure is a game that requires both skill and strategy to win. Here are some tips and tricks to help you improve your game and beat your opponents:

- -

Conclusion

-

8 Ball Pool Apkpure is a fun and exciting game that lets you play pool with players from all over the world. You can download and install it on your Windows PC with Gameloop emulator, and enjoy its features, rules, and challenges. You can also improve your skills and win more matches with some tips and tricks. So what are you waiting for? Download 8 Ball Pool Apkpure today and join the millions of pool lovers who play this game every day!

-

FAQs

-

Q1: Is 8 Ball Pool Apkpure safe and legal?

-

A1: Yes, 8 Ball Pool Apkpure is safe and legal to download and play. Apkpure is a reputable website that verifies all its apps and games for safety and quality. Gameloop is also a trusted emulator that does not contain any malware or viruses. However, you should always download 8 Ball Pool Apkpure from its official website or Gameloop app store, and not from any third-party sources.

-

Q2: How can I play 8 Ball Pool Apkpure with my friends?

-

A2: You can play 8 Ball Pool Apkpure with your friends by using the Play with Friends feature in the game. You can invite your friends by using their unique ID, Facebook account, or Miniclip account. You can also join or create a club with your friends and chat with them in the club chat room.

-

Q3: How can I earn more coins and cash in 8 Ball Pool Apkpure?

-

A3: You can earn more coins and cash in 8 Ball Pool Apkpure by winning matches, tournaments, and mini-games. You can also earn coins and cash by completing daily missions, seasonal events, pool passes, and achievements. You can also earn free coins and cash by logging in daily, watching videos, inviting friends, etc. You can also buy coins and cash with real money if you want to.

-

Q4: How can I upgrade my cue and pool table in 8 Ball Pool Apkpure?

-

A4: You can upgrade your cue and pool table in 8 Ball Pool Apkpure by using coins or cash. You can buy new cues and tables from the shop, or unlock them from surprise boxes, golden shots, scratch and win, etc. You can also upgrade your cues by using cash or cue pieces. You can improve the attributes and effects of your cues by leveling them up. You can also change the design and color of your cues and tables by using coins or cash.

-

Q5: How can I contact the support team of 8 Ball Pool Apkpure?

-

A5: You can contact the support team of 8 Ball Pool Apkpure by using the Help and Support feature in the game. You can access it by clicking on the Settings icon on the top right corner of the screen, and then clicking on the Help and Support button. You can then browse through the frequently asked questions, or submit a ticket to the support team. You can also contact the support team by sending an email to support@miniclip.com.

197e85843d
-
-
\ No newline at end of file diff --git a/spaces/1phancelerku/anime-remove-background/Darah Tak Terbatas and Unlimited Money in Hungry Shark World Get Mod Apk Here.md b/spaces/1phancelerku/anime-remove-background/Darah Tak Terbatas and Unlimited Money in Hungry Shark World Get Mod Apk Here.md deleted file mode 100644 index a7208e24b81ad40fcffa492ab8be32763f76acea..0000000000000000000000000000000000000000 --- a/spaces/1phancelerku/anime-remove-background/Darah Tak Terbatas and Unlimited Money in Hungry Shark World Get Mod Apk Here.md +++ /dev/null @@ -1,115 +0,0 @@ -
-

Download Hungry Shark World Mod Apk Unlimited Blood and Enjoy the Ultimate Shark Experience

-

Do you love sharks? Do you love eating everything in your path? Do you love action-packed games with stunning graphics and sound effects? If you answered yes to any of these questions, then you will love Hungry Shark World, a thrilling game where you control a hungry shark and eat everything that gets in your way. But wait, there's more! You can also download Hungry Shark World Mod Apk Unlimited Blood, a modified version of the game that gives you unlimited blood, coins, gems, and all sharks unlocked. Sounds awesome, right? Read on to find out more about this amazing game and how to download it.

-

What is Hungry Shark World?

-

A thrilling action game where you control a hungry shark

-

Hungry Shark World is an addictive action game where you control a shark and eat everything in your path. The objective is to survive as long as you can and devour as much prey as possible to score tons of points before you eventually die. True to its name, your hungry shark is constantly losing HP due to its insatiable hunger and must continue to eat in order to stay alive. However, the sea is riddled with plenty of hazards and hostile fish that don't just let themselves get eaten, so you have to play smart in order to score high.

-

download hungry shark world mod apk darah tak terbatas


DOWNLOAD ○○○ https://jinyurl.com/2uNP3O



-

Features of Hungry Shark World

-

Over 40 different sharks to unlock and upgrade

-

One of the best features of Hungry Shark World is that it offers a wide variety of sharks to choose from. You can start with a small porbeagle shark and work your way up to bigger and badder sharks like the great white, hammerhead, megalodon, or even a prehistoric mosasaurus. Each shark has its own stats, abilities, appearance, and personality. You can also upgrade your sharks by spending coins and gems on their bite, speed, boost, or health.

-

Four stunning locations to explore and devour

-

Hungry Shark World features four different locations that you can travel to as you progress in the game. Each location has its own theme, scenery,

challenges, and secrets. You can explore the Pacific Islands, the Arabian Sea, the South China Sea, and the Arctic Ocean. Each location has its own unique creatures, landmarks, and events that you can discover and enjoy. You can also switch between locations at any time by using the map.

-

Hundreds of enemies and prey to eat and collect

-

As a hungry shark, you have a lot of options when it comes to your diet. You can eat fish, crabs, turtles, squid, octopus, dolphins, whales, seals, penguins, birds, humans, and more. Each prey has its own value and effect on your shark. Some prey will give you more points, some will heal you more, some will boost your speed or power, and some will even unlock new items or achievements. However, not all prey are easy to catch or harmless. Some prey will fight back, some will poison you, some will explode, and some will even damage your shark. You have to be careful and choose wisely what you eat.

-

Daily chests, missions, and achievements to earn rewards

-

Hungry Shark World also offers plenty of ways to earn rewards and bonuses in the game. You can find daily chests that contain coins, gems, or items. You can complete missions that challenge you to perform certain tasks or feats. You can also unlock achievements that reward you for reaching milestones or doing something extraordinary. These rewards will help you buy and upgrade sharks and accessories, as well as unlock new features and content in the game.

-

Why Download Hungry Shark World Mod Apk Unlimited Blood?

-

Benefits of Hungry Shark World Mod Apk Unlimited Blood

-

Unlimited blood to survive longer and score higher

-

The main benefit of downloading Hungry Shark World Mod Apk Unlimited Blood is that you get unlimited blood for your shark. This means that you don't have to worry about losing HP due to hunger or damage. You can survive longer and eat more without dying. This will allow you to score higher and reach new levels of fun and excitement in the game.

-

Unlimited coins and gems to buy and upgrade sharks and accessories

-

Another benefit of downloading Hungry Shark World Mod Apk Unlimited Blood is that you get unlimited coins and gems for your shark. This means that you don't have to grind or spend real money to buy and upgrade sharks and accessories. You can buy any shark you want from the start and upgrade it to the max without any limitations. You can also buy any accessory you want from the shop and equip it to your shark for extra benefits. This will make your shark more powerful and stylish in the game.

-

All sharks unlocked and available from the start

-

A third benefit of downloading Hungry Shark World Mod Apk Unlimited Blood is that you get all sharks unlocked and available from the start. This means that you don't have to play for hours or complete certain requirements to unlock new sharks in the game. You can choose any shark you want from the start and switch between them at any time by using the map. This will give you more variety and freedom in the game.

-

No ads or in-app purchases to interrupt your gameplay

-

A fourth benefit of downloading Hungry Shark World Mod Apk Unlimited Blood is that you get no ads or in-app purchases to interrupt your gameplay. This means that you don't have to watch annoying ads or pay real money to enjoy the game fully. You can play without any distractions or interruptions in the game.

-

galaxy shooter mod apk unlimited money
-galaxy shooter mod apk download
-galaxy shooter mod apk latest version
-galaxy shooter mod apk android 1
-galaxy shooter mod apk invader war
-galaxy shooter mod apk hack
-galaxy shooter mod apk free shopping
-galaxy shooter mod apk offline
-galaxy shooter mod apk 2023
-galaxy shooter mod apk space attack
-galaxy shooter mod apk rexdl
-galaxy shooter mod apk revdl
-galaxy shooter mod apk no ads
-galaxy shooter mod apk unlimited gems
-galaxy shooter mod apk unlimited coins
-galaxy shooter mod apk premium
-galaxy shooter mod apk pro
-galaxy shooter mod apk full version
-galaxy shooter mod apk unlocked
-galaxy shooter mod apk all ships
-galaxy shooter mod apk all levels
-galaxy shooter mod apk all weapons
-galaxy shooter mod apk all bosses
-galaxy shooter mod apk mega mod
-galaxy shooter mod apk god mode
-galaxy shooter mod apk infinite energy
-galaxy shooter mod apk unlimited lives
-galaxy shooter mod apk unlimited stars
-galaxy shooter mod apk unlimited gold
-galaxy shooter mod apk unlimited crystals
-galaxy shooter mod apk unlimited diamonds
-galaxy shooter mod apk unlimited power-ups
-galaxy shooter mod apk unlimited missiles
-galaxy shooter mod apk unlimited bombs
-galaxy shooter mod apk unlimited bullets
-galaxy shooter mod apk unlimited lasers
-galaxy shooter mod apk unlimited rockets
-galaxy shooter mod apk unlimited shields
-galaxy shooter mod apk unlimited boosters
-galaxy shooter mod apk unlimited drones
-galaxy shooter mod apk high damage
-galaxy shooter mod apk one hit kill
-galaxy shooter mod apk no root
-galaxy shooter mod apk no verification
-galaxy shooter mod apk no survey
-galaxy shooter mod apk for pc
-galaxy shooter mod apk for ios
-galaxy shooter mod apk for iphone
-galaxy shooter mod apk for ipad

-

How to Download Hungry Shark World Mod Apk Unlimited Blood

-

Step 1: Click on the link below to download the mod apk file

-

The first step to download Hungry Shark World Mod Apk Unlimited Blood is to click on the link below to download the mod apk file. The link will take you to a secure site where you can download the file safely and easily.

-

Step 2: Allow unknown sources on your device settings

-

The second step to download Hungry Shark World Mod Apk Unlimited Blood is to allow unknown sources on your device settings. This will enable you to install apps from sources other than the Google Play Store. To do this, go to your device settings > security > unknown sources > enable.

-

Step 3: Install the mod apk file and launch the game

-

The third step to download Hungry Shark World Mod Apk Unlimited Blood is to install the mod apk file and launch the game. To do this, go to your file manager > downloads > hungry-shark-world-mod-apk-unlimited-blood.apk > install > open.

-

Step 4: Enjoy the ultimate shark experience with unlimited blood and resources

-

The fourth and final step to download Hungry Shark World Mod Apk Unlimited Blood is to enjoy the ultimate shark experience with unlimited blood and resources. You can now play the game with no limitations or interruptions and have fun as a hungry shark. You can eat everything in your path, unlock and upgrade all sharks and accessories, explore all locations, and score higher than ever before.

-

Tips and Tricks for Playing Hungry Shark World

-

Use your boost wisely to catch prey and avoid enemies

-

One of the tips and tricks for playing Hungry Shark World is to use your boost wisely to catch prey and avoid enemies. Your boost is a powerful tool that can help you speed up, jump out of the water, or perform special attacks. However, your boost also consumes your stamina, which regenerates slowly over time. Therefore, you should use your boost sparingly and strategically, depending on the situation. For example, you can use your boost to catch fast or fleeing prey, to escape from dangerous enemies or obstacles, or to reach hidden areas or items.

-

Buy the map to find hidden items and locations

-

Another tip and trick for playing Hungry Shark World is to buy the map to find hidden items and locations. The map is an accessory that you can buy from the shop for 500 coins. The map will show you the layout of the location you are in, as well as the locations of chests, missions, pets, enemies, and more. The map will also show you the boundaries of the location and the portals to other locations. The map is very useful for finding secrets and completing objectives in the game.

-

Recruit pets to help you in your journey

-

A third tip and trick for playing Hungry Shark World is to recruit pets to help you in your journey. Pets are small creatures that you can find and collect in the game. Each pet has its own ability and effect that can benefit your shark. For example, some pets can heal you, some can attack enemies, some can collect coins or gems, some can boost your stats, and some can even unlock new features or content. You can equip up to three pets at a time and switch between them at any time by using the map.

-

Avoid dangerous creatures like jellyfish, pufferfish, lionfish, giant squids, etc.

-

A fourth tip and trick for playing Hungry Shark World is to avoid dangerous creatures like jellyfish, pufferfish, lionfish, giant squids, etc. These creatures are not only hard to eat but also harmful to your shark. They can poison you, stun you, damage you, or even kill you instantly. You should steer clear of these creatures unless you have a pet or an accessory that can protect you from them.

-

Eat humans on the surface and complete missions for extra points

-

A fifth tip and trick for playing Hungry Shark World is to eat humans on the surface and complete missions for extra points. Humans are one of the most valuable prey in the game as they give you a lot of points and sometimes coins or gems. You can find humans on beaches, boats, jet skis, helicopters, balloons, etc. You can also jump out of the water and grab them in mid-air. However, be careful as some humans will fight back with weapons or call for help from other humans or military forces. You should also complete missions that involve eating humans as they will give you bonus points and rewards.

-

Conclusion

-

Hungry Shark World is an addictive and fun game that lets you experience life as a shark

-

In conclusion, Hungry Shark World is an addictive and fun game that lets you experience life as a shark. You can control a hungry shark and eat everything in your path while avoiding dangers and obstacles. You can also unlock and upgrade over 40 different sharks and explore four stunning locations in the game.

-

Download Hungry Shark World Mod Apk Unlimited Blood to enjoy the game without any limitations or interruptions

-

If you want to enjoy the game without any limitations or interruptions, you should download Hungry Shark World Mod Apk Unlimited Blood. This mod apk will give you unlimited blood, coins, gems, and all sharks unlocked in the game. You can play the game with no worries about dying or running out of resources. You can also buy and upgrade any shark or accessory you want from the start.

-

Follow the tips and tricks above to maximize your score and become the king of the ocean

-

If you want to maximize your score and become the king of the ocean, you should follow the tips and tricks above. These tips and tricks will help you play smarter and better in the game. You will be able to catch more prey and avoid enemies, find hidden items and locations, recruit pets and accessories, eat humans and complete missions, and use your boost wisely in the game.

-

FAQs

-

Q: What is the difference between Hungry Shark World and Hungry Shark Evolution?

-

A: Hungry Shark World is the sequel to Hungry Shark Evolution, a popular game that was released in 2012. Hungry Shark World has improved graphics, sound effects, gameplay, and features compared to Hungry Shark Evolution. Hungry Shark World also has more sharks, locations, enemies, prey, items, and content than Hungry Shark Evolution.

-

Q: Is Hungry Shark World Mod Apk Unlimited Blood safe to download and install?

-

A: Yes, Hungry Shark World Mod Apk Unlimited Blood is safe to download and install. The mod apk file is scanned and tested for viruses and malware before being uploaded to the site. The mod apk file also does not require any root or jailbreak to work on your device.

-

Q: How can I update Hungry Shark World Mod Apk Unlimited Blood?

-

A: To update Hungry Shark World Mod Apk Unlimited Blood, you have to download and install the latest version of the mod apk file from the same site. You can also check the site regularly for any updates or new features added to the mod apk file.

-

Q: Can I play Hungry Shark World Mod Apk Unlimited Blood online or offline?

-

A: You can play Hungry Shark World Mod Apk Unlimited Blood both online and offline. However, some features and content may require an internet connection to work properly. For example, you may need an internet connection to access the daily chests, missions, achievements, leaderboards, or events in the game.

-

Q: Can I play Hungry Shark World Mod Apk Unlimited Blood with my friends or other players?

-

A: Yes, you can play Hungry Shark World Mod Apk Unlimited Blood with your friends or other players. You can connect your game to Facebook or Google Play Games and invite your friends or other players to join you in the game. You can also compete with them on the leaderboards or cooperate with them on the events in the game.

401be4b1e0
-
-
\ No newline at end of file diff --git a/spaces/232labs/VToonify/README.md b/spaces/232labs/VToonify/README.md deleted file mode 100644 index 40ded2ce4dc80cc8764c8fee50476d44bee383b6..0000000000000000000000000000000000000000 --- a/spaces/232labs/VToonify/README.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: VToonify -emoji: 👨‍🎨 -colorFrom: yellow -colorTo: pink -sdk: gradio -sdk_version: 3.4 -app_file: app.py -pinned: false -license: other -duplicated_from: PKUWilliamYang/VToonify ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/spaces/2gauravc/search_summary_chatgpt/app.py b/spaces/2gauravc/search_summary_chatgpt/app.py deleted file mode 100644 index 289c7a0e64ceeae6759b866b17b4ae4ba11e36c7..0000000000000000000000000000000000000000 --- a/spaces/2gauravc/search_summary_chatgpt/app.py +++ /dev/null @@ -1,104 +0,0 @@ -import streamlit as st -import openai -import sys, getopt -from datetime import datetime -from streamlit.components.v1 import html -import boto3 - -from main import chatgpt_prompt, get_chatgpt_resp, generate_kyc_output, gsearch, save_to_s3 - -# Function to perform the search -# This is a placeholder function, replace it with your actual search implementation -def perform_search(pname, keywords, num_results): - # record current timestamp - start_time = datetime.now() - - # Google search for the person name and get the first 20 query links - query = pname + " " + keywords - search_links = gsearch(query, num_results) - - # Construct the prompt - prompt_text = chatgpt_prompt(pname, search_links) - #get ChatGPT response - resp = get_chatgpt_resp(prompt_text) - # Create PDF with links and summary - rep_txt= generate_kyc_output(query, search_links, resp, start_time) - return (rep_txt) - -main_tab, help_tab, rel_tab = st.tabs(["Run the Bot", "FAQ", "Release Plan"]) - -with main_tab: - # Streamlit app - st.title("Adverse News Detection Assistant") - - # Input fields - names_txt = st.text_input("Enter party name (or multiple names separated by ,)") - plc_text = "laundering OR terrorist OR fraud OR corrupt OR criminal OR investigation OR prosecute OR evasion OR bribe OR sanction" - keywords = st.text_input("Enter other search words:", value=plc_text) - - st.sidebar.markdown("## Controls") - st.sidebar.markdown("Choose your **search** *parameters*") - num_results = st.sidebar.slider("Choose the number of search results:", 5, 30, 20, 5) - st.sidebar.markdown("## Model") - st.sidebar.markdown("GPT v3.5") - st.sidebar.markdown("## App") - st.sidebar.markdown("v0.4") - - col1, col2 = st.columns(2) - with col1: - adv_nw = st.radio( - "Did you find adverse news when you performed this search manually", - ('Yes', 'No', 'Dont Know'), index=2) - with col2: - #st.markdown("Touch time (manual) in mins") - man_tt = st.number_input('Touch time (manual) in mins', value=0, step=1) - #st.markdown("Touch time (with bot) in mins") - bot_tt = st.number_input('Touch time (with bot) in mins', value=0, step=1) - - # Search button - if st.button("Search"): - names = names_txt.split(",") - #print(len(names)) - metrics_ent = (adv_nw != "Dont Know") and (man_tt > 0) and (bot_tt > 0) - # Perform the search and display the results - if names and metrics_ent: - search_results = "" - for name in names: - #print("trying for name {} \n".format(name)) - search_results += perform_search(name, keywords, num_results) - - html(f"
{search_results}
", height=200, scrolling=True) - st.download_button('Download Report',search_results) - try: - date_time = datetime.now() - save_to_s3(search_results,date_time ) - print ("Completed processing for {} names: {} at {} \n".format(len(names), names_txt, str(date_time))) - except: - print ("Completed processing with S3 write error for {} names: {} at {} \n".format(len(names),names_txt, str(date_time))) - else: - st.error("Please enter party name, adverse news selection (Yes or No) and Touch Time before searching.") - -with help_tab: - st.title("FAQ") - - st.markdown("Q. How do I get a count of number of adverse news?") - st.markdown("A. This functionality isnt implemented yet. A workaround is to manually count the number of links with adverse news") - - st.markdown("Q. How do I summarise all the adverse news?") - st.markdown("A. This functionality isnt implemented yet. A workaround is to aggregate the summary of all adverse news items manually, and get a sumary from ChatGPT (chat.openai.com") - - st.markdown("Q. Can I search in other lauguages?") - st.markdown("A. This functionality isnt implemented yet. We are planning to test this feature out with Chinese first") - - st.markdown("Q. Can I search without the other search words?") - st.markdown("A. Just enter a blank space in the text space and search") - -with rel_tab: - st.markdown(f""" - | NO. | Issue / Enhancement | Rel | Status | - |-----|--------------------------------------------------------------------------------------------------------------------------------------------|-----|-----------| - | 1 | Capture productivity and adverse news metrics from the user | 0.4 | Completed | - | 2 | Save productivity and adverse news metrics in a DB | 0.4 | TBD | - | 3 | Convert bot output to structured JSON - Count of adverse news - Summary of all adverse news - Identification of links with adverse news | 0.6 | TBD | - | 4 | Offer alternate solution path with web text scraping and | 0.6 | TBD | - | 5 | Create a page on metrics report | 0.5 | TBD |""") diff --git a/spaces/AIML-TUDA/semantic-diffusion/README.md b/spaces/AIML-TUDA/semantic-diffusion/README.md deleted file mode 100644 index 9a565ba9bbdf1a267b51f89519bc48c7ccd6b8a0..0000000000000000000000000000000000000000 --- a/spaces/AIML-TUDA/semantic-diffusion/README.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Semantic Diffusion -emoji: ⚡ -colorFrom: blue -colorTo: blue -sdk: gradio -sdk_version: 3.18.0 -app_file: app.py -pinned: false -license: creativeml-openrail-m ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/spaces/AP123/dreamgaussian/readme.md b/spaces/AP123/dreamgaussian/readme.md deleted file mode 100644 index dbeab5bf5bc995b6343769ff2389a138da6e5356..0000000000000000000000000000000000000000 --- a/spaces/AP123/dreamgaussian/readme.md +++ /dev/null @@ -1,120 +0,0 @@ -# DreamGaussian - -This repository contains the official implementation for [DreamGaussian: Generative Gaussian Splatting for Efficient 3D Content Creation](). - -### [Project Page](https://dreamgaussian.github.io) | [Arxiv]() - - -https://github.com/dreamgaussian/dreamgaussian/assets/25863658/db860801-7b9c-4b30-9eb9-87330175f5c8 - - -## Install -```bash -pip install -r requirements.txt - -# a modified gaussain splatting (+ depth, alpha rendering) -git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization -pip install ./diff-gaussian-rasterization - -# simple-knn -pip install ./simple-knn - -# nvdiffrast -pip install git+https://github.com/NVlabs/nvdiffrast/ - -# kiuikit -pip install git+https://github.com/ashawkey/kiuikit -``` - -Tested on: -* Ubuntu 22 with torch 1.12 & CUDA 11.6 on a V100. -* Windows 10 with torch 2.1 & CUDA 12.1 on a 3070. - -## Usage - -Image-to-3D: -```bash -### preprocess -# background removal and recenter, save rgba at 256x256 -python process.py data/name.jpg - -# save at a larger resolution -python process.py data/name.jpg --size 512 - -# process all jpg images under a dir -python process.py data - -### training gaussian stage -# train 500 iters (~1min) and export ckpt & coarse_mesh to logs -python main.py --config configs/image.yaml input=data/name_rgba.png save_path=name - -# gui mode (supports visualizing training) -python main.py --config configs/image.yaml input=data/name_rgba.png save_path=name gui=True - -# load and visualize a saved ckpt -python main.py --config configs/image.yaml load=logs/name_model.ply gui=True - -# use an estimated elevation angle if image is not front-view (e.g., common looking-down image can use -30) -python main.py --config configs/image.yaml input=data/name_rgba.png save_path=name elevation=-30 - -### training mesh stage -# auto load coarse_mesh.obj and refine 50 iters (~1min), export fine_mesh to logs -python main2.py --config configs/image.yaml input=data/name_rgba.png save_path=name - -# specify coarse mesh path explicity -python main2.py --config configs/image.yaml input=data/name_rgba.png save_path=name mesh=logs/name_mesh.obj - -# gui mode -python main2.py --config configs/image.yaml input=data/name_rgba.png save_path=name gui=True - -### visualization -# gui for visualizing mesh -python -m kiui.render logs/name.obj - -# save 360 degree video of mesh (can run without gui) -python -m kiui.render logs/name.obj --save_video name.mp4 --wogui - -# save 8 view images of mesh (can run without gui) -python -m kiui.render logs/name.obj --save images/name/ --wogui - -### evaluation of CLIP-similarity -python -m kiui.cli.clip_sim data/name_rgba.png logs/name.obj -``` -Please check `./configs/image.yaml` for more options. - -Text-to-3D: -```bash -### training gaussian stage -python main.py --config configs/text.yaml prompt="a photo of an icecream" save_path=icecream - -### training mesh stage -python main2.py --config configs/text.yaml prompt="a photo of an icecream" save_path=icecream -``` -Please check `./configs/text.yaml` for more options. - -Helper scripts: -```bash -# run all image samples (*_rgba.png) in ./data -python scripts/runall.py --dir ./data --gpu 0 - -# run all text samples (hardcoded in runall_sd.py) -python scripts/runall_sd.py --gpu 0 - -# export all ./logs/*.obj to mp4 in ./videos -python scripts/convert_obj_to_video.py --dir ./logs -``` - -## Acknowledgement - -This work is built on many amazing research works and open-source projects, thanks a lot to all the authors for sharing! - -* [gaussian-splatting](https://github.com/graphdeco-inria/gaussian-splatting) and [diff-gaussian-rasterization](https://github.com/graphdeco-inria/diff-gaussian-rasterization) -* [threestudio](https://github.com/threestudio-project/threestudio) -* [nvdiffrast](https://github.com/NVlabs/nvdiffrast) -* [dearpygui](https://github.com/hoffstadt/DearPyGui) - -## Citation - -``` - -``` diff --git a/spaces/ASJMO/freegpt/g4f/Provider/Providers/Xiaor.py b/spaces/ASJMO/freegpt/g4f/Provider/Providers/Xiaor.py deleted file mode 100644 index 5757f9971157116cbbfabbe5420e3b7e88fed4e7..0000000000000000000000000000000000000000 --- a/spaces/ASJMO/freegpt/g4f/Provider/Providers/Xiaor.py +++ /dev/null @@ -1,39 +0,0 @@ -import requests -import os -import json -from ...typing import sha256, Dict, get_type_hints - -url = 'https://xiaor.eu.org' -model = ['gpt-3.5-turbo', 'gpt-3.5-turbo-16k', - 'gpt-3.5-turbo-16k-0613', 'gpt-3.5-turbo-0613'] -supports_stream = True -needs_auth = False - - -def _create_completion(model: str, messages: list, stream: bool, temperature: float = 0.7, **kwargs): - headers = { - 'Content-Type': 'application/json', - } - data = { - 'model': model, - 'temperature': 0.7, - 'presence_penalty': 0, - 'messages': messages, - } - response = requests.post(url + '/p1/v1/chat/completions', - json=data, stream=True) - - if stream: - for chunk in response.iter_content(chunk_size=None): - chunk = chunk.decode('utf-8') - if chunk.strip(): - message = json.loads(chunk)['choices'][0]['message']['content'] - yield message - else: - message = response.json()['choices'][0]['message']['content'] - yield message - - -params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \ - '(%s)' % ', '.join( - [f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]]) diff --git a/spaces/AchyuthGamer/OpenGPT/g4f/Provider/Providers/Phind.py b/spaces/AchyuthGamer/OpenGPT/g4f/Provider/Providers/Phind.py deleted file mode 100644 index 0db4e3c2662e6ec3b4a4231b9c55bf0744085da6..0000000000000000000000000000000000000000 --- a/spaces/AchyuthGamer/OpenGPT/g4f/Provider/Providers/Phind.py +++ /dev/null @@ -1,76 +0,0 @@ -from __future__ import annotations - -import random -from datetime import datetime - -from ..typing import AsyncGenerator -from ..requests import StreamSession -from .base_provider import AsyncGeneratorProvider, format_prompt - - -class Phind(AsyncGeneratorProvider): - url = "https://www.phind.com" - working = True - supports_gpt_4 = True - - @classmethod - async def create_async_generator( - cls, - model: str, - messages: list[dict[str, str]], - proxy: str = None, - **kwargs - ) -> AsyncGenerator: - chars = 'abcdefghijklmnopqrstuvwxyz0123456789' - user_id = ''.join(random.choice(chars) for _ in range(24)) - data = { - "question": format_prompt(messages), - "webResults": [], - "options": { - "date": datetime.now().strftime("%d.%m.%Y"), - "language": "en", - "detailed": True, - "anonUserId": user_id, - "answerModel": "GPT-4", - "creativeMode": False, - "customLinks": [] - }, - "context":"" - } - headers = { - "Authority": cls.url, - "Accept": "application/json, text/plain, */*", - "Origin": cls.url, - "Referer": f"{cls.url}/" - } - async with StreamSession(headers=headers, timeout=(5, 180), proxies={"https": proxy}, impersonate="chrome107") as session: - async with session.post(f"{cls.url}/api/infer/answer", json=data) as response: - response.raise_for_status() - new_lines = 0 - async for line in response.iter_lines(): - if not line: - continue - if line.startswith(b"data: "): - line = line[6:] - if line.startswith(b""): - continue - if line: - if new_lines: - yield "".join(["\n" for _ in range(int(new_lines / 2))]) - new_lines = 0 - yield line.decode() - else: - new_lines += 1 - - - @classmethod - @property - def params(cls): - params = [ - ("model", "str"), - ("messages", "list[dict[str, str]]"), - ("stream", "bool"), - ("proxy", "str"), - ] - param = ", ".join([": ".join(p) for p in params]) - return f"g4f.provider.{cls.__name__} supports: ({param})" diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/base/Base.d.ts b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/base/Base.d.ts deleted file mode 100644 index 816e8c28c78951670544fe253a5432672031d948..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/base/Base.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -// import * as Phaser from 'phaser'; -import BaseShape from '../../../plugins/gameobjects/shape/shapes/BaseShapes'; - -export default Base; - -declare namespace Base { - - interface IConfig { - x?: number, y?: number, - width?: number, height?: number, - color?: number, - - duration?: number, - start?: boolean, - - ease?: string, - } - -} - -declare class Base extends BaseShape { - constructor( - scene: Phaser.Scene, - config?: Base.IConfig - ) - - start(duration?: number): this; - pause(): this; - resume(): this; - stop(): this; - readonly isRunning: boolean; - - setValue(t: number): this; - value: number; - - setColor(color: number): this; - color: number; - - setDuration(duration: number): this; - duration: this; - - setEase(ease: string): this; - ease: string; - - readonly centerX: number; - readonly centerY: number; - readonly radius: number; -} \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/box/Box.d.ts b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/box/Box.d.ts deleted file mode 100644 index 878fd1b453568adc62244c84d3992011c97dd574..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/spinner/box/Box.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import Base from '../base/Base'; -export default class Box extends Base { } \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/anchor/Anchor.d.ts b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/anchor/Anchor.d.ts deleted file mode 100644 index cffd99e192cb929c71d7fc3dfb54a69774b2f2ab..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/anchor/Anchor.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import Anchor from '../../../plugins/behaviors/anchor/Anchor'; -export default Anchor; \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/EaseDataMethods.js b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/EaseDataMethods.js deleted file mode 100644 index b71567abae8a4e4a0a455b43a59265ee55f9e618..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/EaseDataMethods.js +++ /dev/null @@ -1,44 +0,0 @@ -import { EaseData } from '../../../plugins/easedata.js'; -import { WaitEvent } from '../utils/WaitEvent.js'; - -var OnInitEaseData = function (gameObject, easeData) { - // Route 'complete' of easeData to gameObject - easeData.on('complete', function (key) { - gameObject.emit(`easedata.${key}.complete`, gameObject); - gameObject.emit('easedata.complete', key, gameObject); - }) -} - -export default { - easeDataTo(key, value, duration, ease) { - if (!this._easeData) { - this._easeData = new EaseData(this); - OnInitEaseData(this, this._easeData); - } - this._easeData.easeTo(key, value, duration, ease); - return this; - }, - - easeDataToPromise(key, value, duration, ease) { - this.easeDataTo(key, value, duration, ease); - return WaitEvent(this._easeData, `complete-${key}`); - }, - - stopEaseData(key, toEnd) { - if (!this._easeData) { - return this; - } - - this._easeData.stopEase(key, toEnd); - return this; - }, - - stopAllEaseData(toEnd) { - if (!this._easeData) { - return this; - } - - this._easeData.stopAll(toEnd); - return this; - } -} \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/Layout.js b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/Layout.js deleted file mode 100644 index 67bf7d7c76c58b604f6e2495f59b4fa27d41510c..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/basesizer/Layout.js +++ /dev/null @@ -1,19 +0,0 @@ -var Layout = function () { - // Save scale - var scaleXSave = this.scaleX; - var scaleYSave = this.scaleY; - var scale1 = (scaleXSave === 1) && (scaleYSave === 1); - if (!scale1) { - this.setScale(1); - } - - // Run layout with scale = 1 - this.runLayout(); - - // Restore scale - if (!scale1) { - this.setScale(scaleXSave, scaleYSave); - } - return this; -} -export default Layout; \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch/NinePatch.js b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch/NinePatch.js deleted file mode 100644 index 664a6cad4e76d2dc9f64d4d312a72f964128e24c..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch/NinePatch.js +++ /dev/null @@ -1,2 +0,0 @@ -import NinePatch from '../../../plugins/ninepatch.js' -export default NinePatch; \ No newline at end of file diff --git a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch2/Factory.js b/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch2/Factory.js deleted file mode 100644 index f03930a91233bbff5678efd4ed7ed17c4417a884..0000000000000000000000000000000000000000 --- a/spaces/AgentVerse/agentVerse/ui/src/phaser3-rex-plugins/templates/ui/ninepatch2/Factory.js +++ /dev/null @@ -1,13 +0,0 @@ -import NinePatch from './NinePatch.js'; -import ObjectFactory from '../ObjectFactory.js'; -import SetValue from '../../../plugins/utils/object/SetValue.js'; - -ObjectFactory.register('ninePatch2', function (x, y, width, height, key, columns, rows, config) { - var gameObject = new NinePatch(this.scene, x, y, width, height, key, columns, rows, config); - this.scene.add.existing(gameObject); - return gameObject; -}); - -SetValue(window, 'RexPlugins.UI.NinePatch2', NinePatch); - -export default NinePatch; \ No newline at end of file diff --git a/spaces/AlexWang/lama/models/ade20k/segm_lib/utils/data/dataset.py b/spaces/AlexWang/lama/models/ade20k/segm_lib/utils/data/dataset.py deleted file mode 100644 index 605aa877f7031a5cd2b98c0f831410aa80fddefa..0000000000000000000000000000000000000000 --- a/spaces/AlexWang/lama/models/ade20k/segm_lib/utils/data/dataset.py +++ /dev/null @@ -1,118 +0,0 @@ -import bisect -import warnings - -from torch._utils import _accumulate -from torch import randperm - - -class Dataset(object): - """An abstract class representing a Dataset. - - All other datasets should subclass it. All subclasses should override - ``__len__``, that provides the size of the dataset, and ``__getitem__``, - supporting integer indexing in range from 0 to len(self) exclusive. - """ - - def __getitem__(self, index): - raise NotImplementedError - - def __len__(self): - raise NotImplementedError - - def __add__(self, other): - return ConcatDataset([self, other]) - - -class TensorDataset(Dataset): - """Dataset wrapping data and target tensors. - - Each sample will be retrieved by indexing both tensors along the first - dimension. - - Arguments: - data_tensor (Tensor): contains sample data. - target_tensor (Tensor): contains sample targets (labels). - """ - - def __init__(self, data_tensor, target_tensor): - assert data_tensor.size(0) == target_tensor.size(0) - self.data_tensor = data_tensor - self.target_tensor = target_tensor - - def __getitem__(self, index): - return self.data_tensor[index], self.target_tensor[index] - - def __len__(self): - return self.data_tensor.size(0) - - -class ConcatDataset(Dataset): - """ - Dataset to concatenate multiple datasets. - Purpose: useful to assemble different existing datasets, possibly - large-scale datasets as the concatenation operation is done in an - on-the-fly manner. - - Arguments: - datasets (iterable): List of datasets to be concatenated - """ - - @staticmethod - def cumsum(sequence): - r, s = [], 0 - for e in sequence: - l = len(e) - r.append(l + s) - s += l - return r - - def __init__(self, datasets): - super(ConcatDataset, self).__init__() - assert len(datasets) > 0, 'datasets should not be an empty iterable' - self.datasets = list(datasets) - self.cumulative_sizes = self.cumsum(self.datasets) - - def __len__(self): - return self.cumulative_sizes[-1] - - def __getitem__(self, idx): - dataset_idx = bisect.bisect_right(self.cumulative_sizes, idx) - if dataset_idx == 0: - sample_idx = idx - else: - sample_idx = idx - self.cumulative_sizes[dataset_idx - 1] - return self.datasets[dataset_idx][sample_idx] - - @property - def cummulative_sizes(self): - warnings.warn("cummulative_sizes attribute is renamed to " - "cumulative_sizes", DeprecationWarning, stacklevel=2) - return self.cumulative_sizes - - -class Subset(Dataset): - def __init__(self, dataset, indices): - self.dataset = dataset - self.indices = indices - - def __getitem__(self, idx): - return self.dataset[self.indices[idx]] - - def __len__(self): - return len(self.indices) - - -def random_split(dataset, lengths): - """ - Randomly split a dataset into non-overlapping new datasets of given lengths - ds - - Arguments: - dataset (Dataset): Dataset to be split - lengths (iterable): lengths of splits to be produced - """ - if sum(lengths) != len(dataset): - raise ValueError("Sum of input lengths does not equal the length of the input dataset!") - - indices = randperm(sum(lengths)) - return [Subset(dataset, indices[offset - length:offset]) for offset, length in zip(_accumulate(lengths), lengths)] diff --git a/spaces/Alican/pixera/README.md b/spaces/Alican/pixera/README.md deleted file mode 100644 index 19804d6664f64ba557e5991ebd7908a71e647b7d..0000000000000000000000000000000000000000 --- a/spaces/Alican/pixera/README.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: Pixera -emoji: 💻 -colorFrom: gray -colorTo: blue -sdk: gradio -sdk_version: 3.1.1 -app_file: app.py -pinned: false ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/spaces/Amrrs/DragGan-Inversion/PTI/models/e4e/discriminator.py b/spaces/Amrrs/DragGan-Inversion/PTI/models/e4e/discriminator.py deleted file mode 100644 index 16bf3722c7f2e35cdc9bd177a33ed0975e67200d..0000000000000000000000000000000000000000 --- a/spaces/Amrrs/DragGan-Inversion/PTI/models/e4e/discriminator.py +++ /dev/null @@ -1,20 +0,0 @@ -from torch import nn - - -class LatentCodesDiscriminator(nn.Module): - def __init__(self, style_dim, n_mlp): - super().__init__() - - self.style_dim = style_dim - - layers = [] - for i in range(n_mlp-1): - layers.append( - nn.Linear(style_dim, style_dim) - ) - layers.append(nn.LeakyReLU(0.2)) - layers.append(nn.Linear(512, 1)) - self.mlp = nn.Sequential(*layers) - - def forward(self, w): - return self.mlp(w) diff --git a/spaces/Andy1621/uniformer_image_segmentation/configs/ccnet/ccnet_r101-d8_512x1024_80k_cityscapes.py b/spaces/Andy1621/uniformer_image_segmentation/configs/ccnet/ccnet_r101-d8_512x1024_80k_cityscapes.py deleted file mode 100644 index 989928ab7f98da86e291451040ff85669a9fbddb..0000000000000000000000000000000000000000 --- a/spaces/Andy1621/uniformer_image_segmentation/configs/ccnet/ccnet_r101-d8_512x1024_80k_cityscapes.py +++ /dev/null @@ -1,2 +0,0 @@ -_base_ = './ccnet_r50-d8_512x1024_80k_cityscapes.py' -model = dict(pretrained='open-mmlab://resnet101_v1c', backbone=dict(depth=101)) diff --git a/spaces/Andy1621/uniformer_image_segmentation/configs/deeplabv3/deeplabv3_r50-d8_512x512_160k_ade20k.py b/spaces/Andy1621/uniformer_image_segmentation/configs/deeplabv3/deeplabv3_r50-d8_512x512_160k_ade20k.py deleted file mode 100644 index b4a9d4e1b9123b3c965cd430237ce9fcc7018a11..0000000000000000000000000000000000000000 --- a/spaces/Andy1621/uniformer_image_segmentation/configs/deeplabv3/deeplabv3_r50-d8_512x512_160k_ade20k.py +++ /dev/null @@ -1,6 +0,0 @@ -_base_ = [ - '../_base_/models/deeplabv3_r50-d8.py', '../_base_/datasets/ade20k.py', - '../_base_/default_runtime.py', '../_base_/schedules/schedule_160k.py' -] -model = dict( - decode_head=dict(num_classes=150), auxiliary_head=dict(num_classes=150)) diff --git a/spaces/Andy1621/uniformer_image_segmentation/configs/resnest/deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py b/spaces/Andy1621/uniformer_image_segmentation/configs/resnest/deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py deleted file mode 100644 index 69bef7238345cf6aabb126012af992602f910287..0000000000000000000000000000000000000000 --- a/spaces/Andy1621/uniformer_image_segmentation/configs/resnest/deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py +++ /dev/null @@ -1,9 +0,0 @@ -_base_ = '../deeplabv3plus/deeplabv3plus_r101-d8_512x1024_80k_cityscapes.py' -model = dict( - pretrained='open-mmlab://resnest101', - backbone=dict( - type='ResNeSt', - stem_channels=128, - radix=2, - reduction_factor=4, - avg_down_stride=True)) diff --git a/spaces/AnishKumbhar/ChatBot/text-generation-webui-main/modules/evaluate.py b/spaces/AnishKumbhar/ChatBot/text-generation-webui-main/modules/evaluate.py deleted file mode 100644 index 8044e203151157a6473fa11c98414a27d45a32af..0000000000000000000000000000000000000000 --- a/spaces/AnishKumbhar/ChatBot/text-generation-webui-main/modules/evaluate.py +++ /dev/null @@ -1,151 +0,0 @@ -import datetime -from pathlib import Path - -import pandas as pd -import torch -from datasets import load_dataset -from tqdm import tqdm - -from modules import shared -from modules.models import load_model, unload_model -from modules.models_settings import get_model_metadata, update_model_parameters -from modules.text_generation import encode - - -def load_past_evaluations(): - if Path('logs/evaluations.csv').exists(): - df = pd.read_csv(Path('logs/evaluations.csv'), dtype=str) - df['Perplexity'] = pd.to_numeric(df['Perplexity']) - return df - else: - return pd.DataFrame(columns=['Model', 'LoRAs', 'Dataset', 'Perplexity', 'stride', 'max_length', 'Date', 'Comment']) - - -past_evaluations = load_past_evaluations() - - -def save_past_evaluations(df): - global past_evaluations - past_evaluations = df - filepath = Path('logs/evaluations.csv') - filepath.parent.mkdir(parents=True, exist_ok=True) - df.to_csv(filepath, index=False) - - -def calculate_perplexity(models, input_dataset, stride, _max_length): - ''' - Based on: - https://huggingface.co/docs/transformers/perplexity#calculating-ppl-with-fixedlength-models - ''' - - global past_evaluations - cumulative_log = '' - cumulative_log += "Loading the input dataset...\n\n" - yield cumulative_log - - # Copied from https://github.com/qwopqwop200/GPTQ-for-LLaMa/blob/triton/utils/datautils.py - if input_dataset == 'wikitext': - data = load_dataset('wikitext', 'wikitext-2-raw-v1', split='test') - text = "\n\n".join(data['text']) - elif input_dataset == 'ptb': - data = load_dataset('ptb_text_only', 'penn_treebank', split='validation') - text = "\n\n".join(data['sentence']) - elif input_dataset == 'ptb_new': - data = load_dataset('ptb_text_only', 'penn_treebank', split='test') - text = " ".join(data['sentence']) - else: - with open(Path(f'training/datasets/{input_dataset}.txt'), 'r', encoding='utf-8') as f: - text = f.read() - - for model in models: - if is_in_past_evaluations(model, input_dataset, stride, _max_length): - cumulative_log += f"{model} has already been tested. Ignoring.\n\n" - yield cumulative_log - continue - - if model != 'current model': - try: - yield cumulative_log + f"Loading {model}...\n\n" - model_settings = get_model_metadata(model) - shared.settings.update({k: v for k, v in model_settings.items() if k in shared.settings}) # hijacking the interface defaults - update_model_parameters(model_settings) # hijacking the command-line arguments - shared.model_name = model - unload_model() - shared.model, shared.tokenizer = load_model(shared.model_name) - except: - cumulative_log += f"Failed to load {model}. Moving on.\n\n" - yield cumulative_log - continue - - cumulative_log += f"Processing {shared.model_name}...\n\n" - yield cumulative_log + "Tokenizing the input dataset...\n\n" - encodings = encode(text, add_special_tokens=False) - seq_len = encodings.shape[1] - if _max_length: - max_length = _max_length - elif hasattr(shared.model.config, 'max_position_embeddings'): - max_length = shared.model.config.max_position_embeddings - else: - max_length = 2048 - - nlls = [] - prev_end_loc = 0 - for begin_loc in tqdm(range(0, seq_len, stride)): - yield cumulative_log + f"Evaluating... {100*begin_loc/seq_len:.2f}%" - end_loc = min(begin_loc + max_length, seq_len) - trg_len = end_loc - prev_end_loc # may be different from stride on last loop - input_ids = encodings[:, begin_loc:end_loc] - target_ids = input_ids.clone() - target_ids[:, :-trg_len] = -100 - - with torch.no_grad(): - outputs = shared.model(input_ids=input_ids, labels=target_ids) - - # loss is calculated using CrossEntropyLoss which averages over valid labels - # N.B. the model only calculates loss over trg_len - 1 labels, because it internally shifts the labels - # to the left by 1. - neg_log_likelihood = outputs.loss - - nlls.append(neg_log_likelihood) - - prev_end_loc = end_loc - if end_loc == seq_len: - break - - ppl = torch.exp(torch.stack(nlls).mean()) - add_entry_to_past_evaluations(float(ppl), shared.model_name, input_dataset, stride, _max_length) - save_past_evaluations(past_evaluations) - cumulative_log += f"The perplexity for {shared.model_name} is: {float(ppl)}\n\n" - yield cumulative_log - - -def add_entry_to_past_evaluations(perplexity, model, dataset, stride, max_length): - global past_evaluations - entry = { - 'Model': model, - 'LoRAs': ', '.join(shared.lora_names) or '-', - 'Dataset': dataset, - 'Perplexity': perplexity, - 'stride': str(stride), - 'max_length': str(max_length), - 'Date': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), - 'Comment': '' - } - past_evaluations = pd.concat([past_evaluations, pd.DataFrame([entry])], ignore_index=True) - - -def is_in_past_evaluations(model, dataset, stride, max_length): - entries = past_evaluations[(past_evaluations['Model'] == model) & - (past_evaluations['Dataset'] == dataset) & - (past_evaluations['max_length'] == str(max_length)) & - (past_evaluations['stride'] == str(stride))] - - if entries.shape[0] > 0: - return True - else: - return False - - -def generate_markdown_table(): - sorted_df = past_evaluations.sort_values(by=['Dataset', 'stride', 'Perplexity', 'Date']) - return sorted_df diff --git a/spaces/AnnonSubmission/xai-cl/data_transforms.py b/spaces/AnnonSubmission/xai-cl/data_transforms.py deleted file mode 100644 index da17ef24463c190e5e5a49708a48c28ace8c04e0..0000000000000000000000000000000000000000 --- a/spaces/AnnonSubmission/xai-cl/data_transforms.py +++ /dev/null @@ -1,96 +0,0 @@ -import torch -import torchvision -import torchvision.transforms as transforms -import torch.nn as nn -from PIL import Image, ImageOps, ImageFilter -import random - -def add_normalization_to_transform(unnormalized_transforms): - """Adds ImageNet normalization to all transforms""" - normalized_transform = {} - for key, value in unnormalized_transforms.items(): - normalized_transform[key] = transforms.Compose([value, - transforms.Normalize(mean=[0.485, 0.456, 0.406], - std=[0.229, 0.224, 0.225])]) - return normalized_transform - -def modify_transforms(normal_transforms, no_shift_transforms, ig_transforms): - normal_transforms = add_normalization_to_transform(normal_transforms) - no_shift_transforms = add_normalization_to_transform(no_shift_transforms) - ig_transforms = add_normalization_to_transform(ig_transforms) - return normal_transforms, no_shift_transforms, ig_transforms - -class Solarization(object): - def __init__(self, p): - self.p = p - - def __call__(self, img): - if random.random() < self.p: - return ImageOps.solarize(img) - else: - return img - -# no imagent normalization for simclrv2 -pure_transform = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.ToTensor()]) - -aug_transform = transforms.Compose([transforms.RandomResizedCrop(224), - transforms.RandomHorizontalFlip(p=0.5), - transforms.RandomApply([transforms.ColorJitter(0.8, 0.8, 0.8, 0.2)], p=0.8), - transforms.RandomGrayscale(p=0.2), - transforms.RandomApply([transforms.GaussianBlur(kernel_size=(21,21), sigma=(0.1,2.0))], p=0.5), - transforms.ToTensor()]) - -ig_pure_transform = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.ToTensor()]) - -ig_transform_colorjitter = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.RandomApply([transforms.ColorJitter(0.8, 0.8, 0.8, 0.4)], p=1), - transforms.ToTensor()]) - -ig_transform_blur = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.RandomApply([transforms.GaussianBlur(kernel_size=(11,11), sigma=(5,5))], p=1), - transforms.ToTensor()]) - -ig_transform_solarize = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - Solarization(p=1.0), - transforms.ToTensor()]) - -ig_transform_grayscale = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.RandomGrayscale(p=1), - transforms.ToTensor()]) - - -ig_transform_combine = transforms.Compose([transforms.Resize(256), - transforms.CenterCrop(224), - transforms.RandomApply([transforms.ColorJitter(0.8, 0.8, 0.8, 0.2)], p=0.8), - transforms.RandomGrayscale(p=0.2), - transforms.RandomApply([transforms.GaussianBlur(kernel_size=(21,21), sigma=(0.1, 2.0))], p=0.5), - transforms.ToTensor()]) - -pure_transform_no_shift = transforms.Compose([transforms.Resize((224, 224)), - transforms.ToTensor()]) - -aug_transform_no_shift = transforms.Compose([transforms.Resize((224, 224)), - transforms.RandomApply([transforms.ColorJitter(0.8, 0.8, 0.8, 0.2)], p=0.8), - transforms.RandomGrayscale(p=0.2), - transforms.ToTensor()]) - -normal_transforms = {'pure': pure_transform, - 'aug': aug_transform} - -no_shift_transforms = {'pure': pure_transform_no_shift, - 'aug': aug_transform_no_shift} - -ig_transforms = {'pure': ig_pure_transform, - 'color_jitter': ig_transform_colorjitter, - 'blur': ig_transform_blur, - 'grayscale': ig_transform_grayscale, - 'solarize': ig_transform_solarize, - 'combine': ig_transform_combine} \ No newline at end of file diff --git a/spaces/Benson/text-generation/Examples/Descargar Counter Strike 1.6 Original.md b/spaces/Benson/text-generation/Examples/Descargar Counter Strike 1.6 Original.md deleted file mode 100644 index 50c7e6ce8ec72a2abef7eacdfea66799cf142045..0000000000000000000000000000000000000000 --- a/spaces/Benson/text-generation/Examples/Descargar Counter Strike 1.6 Original.md +++ /dev/null @@ -1,149 +0,0 @@ - -

Cómo descargar y jugar Counter-Strike 1.6 Original

-

-

descargar counter strike 1.6 original


Download Zip ⇒⇒⇒ https://bltlly.com/2v6K4r



-

Introducción

-

Counter-Strike 1.6 original, también conocido como Half-Life: Counter-Strike o CS 1.6, es un juego de disparos táctico en primera persona que fue lanzado en 2000 por Valve. Inicialmente fue desarrollado y lanzado como una modificación de Half-Life por Minh "Gooseman" Le y Jess Cliffe en 1999, antes de ser contratados por Valve y la propiedad intelectual del juego fue adquirida.

-

El juego se desarrolla en varios lugares alrededor del mundo, donde los jugadores asumen el papel de fuerzas antiterroristas o militantes terroristas. Durante cada ronda de juego, los dos equipos tienen la tarea de derrotarse entre sí mediante el logro de los objetivos del mapa o la eliminación de todos los combatientes enemigos. Cada jugador puede personalizar su arsenal de armas y accesorios al comienzo de cada partido, con la moneda que se gana después del final de cada ronda.

-

Counter-Strike 1.6 original es uno de los juegos FPS multijugador más populares e influyentes de todos los tiempos, con millones de jugadores y fans en todo el mundo. Ha generado varias secuelas, remakes, ports, spin-offs, mods y torneos a lo largo de los años. También es uno de los títulos de esports más grandes, con equipos profesionales y jugadores compitiendo por la fama y la fortuna en varias ligas y eventos.

-

-

Algunas de las principales características y modos de juego de Counter-Strike 1.6 original son:

-